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

8 lines
121 B
Plaintext
Raw Normal View History

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