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

10 lines
190 B
Plaintext

{
let x:u256
function f() -> a:u256, b:u256 {}
x, 123:u256 := f()
}
// ====
// dialect: evmTyped
// ----
// ParserError 2856: (62-64=':='): Variable name must precede ":=" in assignment.