Extract yul syntax tests.

This commit is contained in:
chriseth
2020-09-15 12:13:30 +02:00
parent 552a5f0913
commit 768e0e96e4
31 changed files with 128 additions and 143 deletions
@@ -0,0 +1,8 @@
{
function f(a:u256) -> b:u256 {}
function g(a:u256, b:u256, c:u256) {}
function x() {
g(1:u256, 2:u256, f(3:u256))
x()
}
}