Extend view pure test suite.

This commit is contained in:
Daniel Kirchner
2018-07-04 11:25:45 +02:00
parent d9a8f2aace
commit f5be38bff1
17 changed files with 162 additions and 3 deletions
@@ -5,4 +5,8 @@ contract C {
function g() pure public returns (bytes4) {
return this.f.selector ^ this.x.selector;
}
function h() view public returns (bytes4) {
x;
return this.f.selector ^ this.x.selector;
}
}