solidity/test/libyul/yulSyntaxTests/variable_access_cross_funcs.yul
2020-11-04 12:03:33 +01:00

9 lines
109 B
Plaintext

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