leo/tests/compiler/function/scope_fail.leo
2021-05-05 18:29:44 +03:00

17 lines
223 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
function foo() -> field {
return myGlobal;
}
function main() {
const myGlobal = 42field;
const err = foo();
// TODO: update after field comparison is enabled
}