leo/asg/tests/fail/function/scope_fail.leo

8 lines
122 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function foo() -> field {
return myGlobal;
2021-01-25 18:17:42 +03:00
}
function main() {
const myGlobal = 42field;
const err = foo();
2021-01-25 18:17:42 +03:00
}