solidity/test/libyul/yulSyntaxTests/variable_access_cross_funcs.yul

9 lines
113 B
Plaintext

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