solidity/test/libsolidity/syntaxTests/viewPureChecker/selector.sol
2018-07-04 11:25:45 +02:00

13 lines
293 B
Solidity

contract C {
uint public x;
function f() payable public {
}
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;
}
}