diff options
author | chriseth <chris@ethereum.org> | 2018-02-14 00:08:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 00:08:35 +0800 |
commit | 23484ba6a4ab17df58dfa1d27b486c10265ce4ae (patch) | |
tree | 64944b4cc71593944dc461b288cf25dfdf68cb9e /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | f84b2c451425a5913ef3decc18cf56ef95988d83 (diff) | |
parent | aea9e7fe549d93436a1eb355258ea1b11b5dfb22 (diff) | |
download | dexon-solidity-23484ba6a4ab17df58dfa1d27b486c10265ce4ae.tar dexon-solidity-23484ba6a4ab17df58dfa1d27b486c10265ce4ae.tar.gz dexon-solidity-23484ba6a4ab17df58dfa1d27b486c10265ce4ae.tar.bz2 dexon-solidity-23484ba6a4ab17df58dfa1d27b486c10265ce4ae.tar.lz dexon-solidity-23484ba6a4ab17df58dfa1d27b486c10265ce4ae.tar.xz dexon-solidity-23484ba6a4ab17df58dfa1d27b486c10265ce4ae.tar.zst dexon-solidity-23484ba6a4ab17df58dfa1d27b486c10265ce4ae.zip |
Merge pull request #3498 from ethereum/allowthisfselector
Allow `this.f.selector` to be pure.
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 5b98d979..0611e71d 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -10219,24 +10219,29 @@ BOOST_AUTO_TEST_CASE(function_types_sig) { char const* sourceCode = R"( contract C { - function f() returns (bytes4) { + uint public x; + function f() pure returns (bytes4) { return this.f.selector; } function g() returns (bytes4) { - function () external returns (bytes4) fun = this.f; + function () pure external returns (bytes4) fun = this.f; return fun.selector; } function h() returns (bytes4) { - function () external returns (bytes4) fun = this.f; + function () pure external returns (bytes4) fun = this.f; var funvar = fun; return funvar.selector; } + function i() pure returns (bytes4) { + return this.x.selector; + } } )"; compileAndRun(sourceCode, 0, "C"); ABI_CHECK(callContractFunction("f()"), encodeArgs(asString(FixedHash<4>(dev::keccak256("f()")).asBytes()))); ABI_CHECK(callContractFunction("g()"), encodeArgs(asString(FixedHash<4>(dev::keccak256("f()")).asBytes()))); ABI_CHECK(callContractFunction("h()"), encodeArgs(asString(FixedHash<4>(dev::keccak256("f()")).asBytes()))); + ABI_CHECK(callContractFunction("i()"), encodeArgs(asString(FixedHash<4>(dev::keccak256("x()")).asBytes()))); } BOOST_AUTO_TEST_CASE(constant_string) |