leo/tests/compiler/function/scope_fail.leo
2021-04-19 18:08:14 -07:00

8 lines
122 B
Plaintext

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