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

8 lines
119 B
Plaintext
Raw Normal View History

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