1 2 3 4 5 6 7 8
contract C { uint public x; function f() payable public { } function g() pure public returns (bytes4) { return this.f.selector ^ this.x.selector; } }