*** empty log message ***
[chuck-blob.git] / v2 / test / p60.ck
blobc6220fc20805383a6301864591489d2ebf4d9ec5
1 // function declaration before definition ( fail-correct )
3 fun int foo();
5 fun int bar() { 
6         return 4 * foo();
9 fun int foo() { 
10         return 5;
13 bar() => int answer;
15 if ( answer == 20 ) <<<"success">>>;