solidity/test/libyul/yulSyntaxTests/vardecl_multi_conflict.yul

7 lines
134 B
Plaintext
Raw Normal View History

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