Add settings framework for interactive tests.

This commit is contained in:
chriseth
2019-04-03 14:58:20 +02:00
parent 8942c5acfb
commit aeb260cde1
10 changed files with 118 additions and 53 deletions
@@ -0,0 +1,9 @@
contract C {
function f(uint x) public returns (uint y) {
assembly { y := shl(2, x) }
}
}
// ====
// EVMVersion: >byzantium
// ----
// f(uint256): 7 -> 28