aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-10-05 22:12:21 +0800
committerGitHub <noreply@github.com>2017-10-05 22:12:21 +0800
commitd0fa56a217f50458b128b0a570724cdac0a5ee1a (patch)
tree49ca4270f829ac145b0d335092590d8de8961918 /test/libsolidity
parent8b26d65b62f54083e1bec02b34994962770b420f (diff)
parent09276cb9d3589493176bc45b2075517c2087d75b (diff)
downloaddexon-solidity-d0fa56a217f50458b128b0a570724cdac0a5ee1a.tar.gz
dexon-solidity-d0fa56a217f50458b128b0a570724cdac0a5ee1a.tar.zst
dexon-solidity-d0fa56a217f50458b128b0a570724cdac0a5ee1a.zip
Merge pull request #2981 from ethereum/no-address-overload
Do not add members of address to contracts in experimental 0.5.0
Diffstat (limited to 'test/libsolidity')
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp58
1 files changed, 58 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp
index 350d41f1..738e0a87 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -7100,6 +7100,64 @@ BOOST_AUTO_TEST_CASE(array_length_validation)
CHECK_ERROR(text, TypeError, "Invalid array length, expected integer literal.");
}
+BOOST_AUTO_TEST_CASE(no_address_members_on_contract)
+{
+ char const* text = R"(
+ pragma experimental "v0.5.0";
+ contract C {
+ function f() {
+ this.balance;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "Member \"balance\" not found or not visible after argument-dependent lookup in contract");
+ text = R"(
+ pragma experimental "v0.5.0";
+ contract C {
+ function f() {
+ this.transfer;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "Member \"transfer\" not found or not visible after argument-dependent lookup in contract");
+ text = R"(
+ pragma experimental "v0.5.0";
+ contract C {
+ function f() {
+ this.send;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "Member \"send\" not found or not visible after argument-dependent lookup in contract");
+ text = R"(
+ pragma experimental "v0.5.0";
+ contract C {
+ function f() {
+ this.call;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "Member \"call\" not found or not visible after argument-dependent lookup in contract");
+ text = R"(
+ pragma experimental "v0.5.0";
+ contract C {
+ function f() {
+ this.callcode;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "Member \"callcode\" not found or not visible after argument-dependent lookup in contract");
+ text = R"(
+ pragma experimental "v0.5.0";
+ contract C {
+ function f() {
+ this.delegatecall;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "Member \"delegatecall\" not found or not visible after argument-dependent lookup in contract");
+}
+
BOOST_AUTO_TEST_SUITE_END()
}