leo/compiler/tests/function/scope_fail.leo

8 lines
119 B
Plaintext
Raw Normal View History

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