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

7 lines
116 B
Plaintext

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