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

7 lines
134 B
Plaintext

{
function f() -> x, y {}
let x, x := f()
}
// ----
// DeclarationError 1395: (28-43): Variable name x already taken in this scope.