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

7 lines
129 B
Plaintext

{
let x := 1
let x := 2
}
// ----
// DeclarationError 1395: (15-25='let x := 2'): Variable name x already taken in this scope.