Add test case for jumpi in inline assembly

This commit is contained in:
Alex Beregszaszi 2020-07-03 12:26:35 +01:00
parent 6e70aaf7ee
commit f0d256bfdb

View File

@ -0,0 +1,9 @@
contract C {
function f() pure public {
assembly {
jumpi(2, 1)
}
}
}
// ----
// DeclarationError 4619: (75-80): Function not found.