Extract yul syntax tests: multiple assignment expression

This commit is contained in:
Christian Parpart
2020-10-14 11:50:25 +02:00
parent 99d18336a0
commit 5b799b01ab
4 changed files with 30 additions and 20 deletions
@@ -0,0 +1,12 @@
{
function f(a:u256) -> r1:u256, r2:u256 {
r1 := a
r2 := 7:u256
}
let x:u256 := 9:u256
let y:u256 := 2:u256
x, y := f(x)
}
// ====
// dialect: evmTyped
// ----