source: CIVL/examples/possibleBug/undefinedVar.cvl@ a147082

1.23 2.0 main test-branch
Last change on this file since a147082 was 7ed7c9d, checked in by Yihao Yan <yihaoyan1@…>, 9 years ago

minor changes

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@3876 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 92 bytes
Line 
1
2void fun(double *a){
3 *a = *a + 1;
4}
5
6int main(){
7 double Jb;
8 fun(&Jb);
9 return 0;
10}
Note: See TracBrowser for help on using the repository browser.