leo/compiler/tests/function/scope_fail.leo
2021-04-14 15:27:57 -07:00

8 lines
122 B
Plaintext

function foo() -> field {
return myGlobal;
}
function main() {
const myGlobal = 42field;
const err = foo();
}