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,9 @@
contract C {
function f() payable public returns (C) {
return this;
}
function g() pure public returns (bytes4) {
C x = C(0x123);
return x.f.selector;
}
}