solidity/test/libyul/yulSyntaxTests/variable_use_before_decl_1.yul

7 lines
105 B
Plaintext
Raw Normal View History

{
x := 2
let x := 3
}
// ----
// DeclarationError 1133: (3-4): Variable x used before it was declared.