Extract test cases from ViewPureChecker

This commit is contained in:
Alex Beregszaszi
2018-06-06 15:41:41 +01:00
parent 59b35fa5b2
commit b2a3e165cb
23 changed files with 227 additions and 359 deletions
@@ -0,0 +1,8 @@
contract C {
uint public x;
function f() payable public {
}
function g() pure public returns (bytes4) {
return this.f.selector ^ this.x.selector;
}
}