solidity/test/libyul/yulSyntaxTests/variable_access_cross_funcs.yul
2022-04-01 23:41:18 -05:00

9 lines
117 B
Plaintext

{
let x := 2
function g() {
pop(x)
}
}
// ----
// DeclarationError 8198: (36-37='x'): Identifier "x" not found.