leo/tests/compiler/function/scope_fail.leo

8 lines
122 B
Plaintext
Raw Normal View History

2020-07-08 05:53:37 +03:00
function foo() -> field {
return myGlobal;
}
2020-07-30 22:10:33 +03:00
function main() {
const myGlobal = 42field;
const err = foo();
}