aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/ViewPureChecker.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-02-14 00:08:35 +0800
committerGitHub <noreply@github.com>2018-02-14 00:08:35 +0800
commit23484ba6a4ab17df58dfa1d27b486c10265ce4ae (patch)
tree64944b4cc71593944dc461b288cf25dfdf68cb9e /test/libsolidity/ViewPureChecker.cpp
parentf84b2c451425a5913ef3decc18cf56ef95988d83 (diff)
parentaea9e7fe549d93436a1eb355258ea1b11b5dfb22 (diff)
downloaddexon-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/ViewPureChecker.cpp')
-rw-r--r--test/libsolidity/ViewPureChecker.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/test/libsolidity/ViewPureChecker.cpp b/test/libsolidity/ViewPureChecker.cpp
index e91e713c..3a03c877 100644
--- a/test/libsolidity/ViewPureChecker.cpp
+++ b/test/libsolidity/ViewPureChecker.cpp
@@ -326,6 +326,53 @@ BOOST_AUTO_TEST_CASE(function_types)
CHECK_SUCCESS_NO_WARNINGS(text);
}
+BOOST_AUTO_TEST_CASE(selector)
+{
+ string text = R"(
+ contract C {
+ uint public x;
+ function f() payable public {
+ }
+ function g() pure public returns (bytes4) {
+ return this.f.selector ^ this.x.selector;
+ }
+ }
+ )";
+ CHECK_SUCCESS_NO_WARNINGS(text);
+}
+
+BOOST_AUTO_TEST_CASE(selector_complex)
+{
+ string text = R"(
+ contract C {
+ function f(C c) pure public returns (C) {
+ return c;
+ }
+ function g() pure public returns (bytes4) {
+ // By passing `this`, we read from the state, even if f itself is pure.
+ return f(this).f.selector;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "reads from the environment or state and thus requires \"view\"");
+}
+
+BOOST_AUTO_TEST_CASE(selector_complex2)
+{
+ string text = R"(
+ contract C {
+ function f() payable public returns (C) {
+ return this;
+ }
+ function g() pure public returns (bytes4) {
+ C x = C(0x123);
+ return x.f.selector;
+ }
+ }
+ )";
+ CHECK_SUCCESS_NO_WARNINGS(text);
+}
+
BOOST_AUTO_TEST_CASE(creation)
{
string text = R"(