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

7 lines
105 B
Plaintext

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