Extracting more end-to-end tests.

This commit is contained in:
Christian Parpart
2019-07-08 16:04:52 +02:00
parent 019ec63f63
commit a9a56bc6dd
26 changed files with 452 additions and 641 deletions
@@ -0,0 +1,16 @@
contract test {
function f() public pure returns(uint r) {
uint i = 0;
do
{
if (i > 0) return 0;
i++;
continue;
} while (false);
return 42;
}
}
// ====
// compileViaYul: also
// ----
// f() -> 42