first commit
This commit is contained in:
commit
063194f8be
349 changed files with 36508 additions and 0 deletions
14
tester/testsuite/good/core005.jl
Normal file
14
tester/testsuite/good/core005.jl
Normal file
|
@ -0,0 +1,14 @@
|
|||
/* usage of variable initialized in both branches. */
|
||||
|
||||
int main () {
|
||||
int x;
|
||||
int y = 56;
|
||||
if (y + 45 <= 2) {
|
||||
x = 1;
|
||||
} else {
|
||||
x = 2;
|
||||
}
|
||||
printInt(x);
|
||||
return 0 ;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue