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

7 lines
152 B
Plaintext

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