leo/compiler/tests/function/scope_fail.leo

8 lines
118 B
Plaintext
Raw Normal View History

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