first commit
This commit is contained in:
commit
063194f8be
349 changed files with 36508 additions and 0 deletions
23
tester/testsuite/good/core003.jl
Normal file
23
tester/testsuite/good/core003.jl
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Testing the return checker
|
||||
|
||||
int f () {
|
||||
if (true)
|
||||
return 0;
|
||||
else
|
||||
{}
|
||||
}
|
||||
|
||||
int g () {
|
||||
if (false)
|
||||
{}
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
void p () {}
|
||||
|
||||
|
||||
int main() {
|
||||
p();
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue