aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityEndToEndTest.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-16 20:43:56 +0800
committerGitHub <noreply@github.com>2018-07-16 20:43:56 +0800
commit931794001e92cbfe99c91da037cf36a1808d9df1 (patch)
tree0bfb67ef7175f9758cfef0a4ca8e290570903965 /test/libsolidity/SolidityEndToEndTest.cpp
parent58667db8b891a535dfc139144271c1bd8a1e067a (diff)
parent396bf118585d213a397be990b5118a47ac4753c1 (diff)
downloaddexon-solidity-931794001e92cbfe99c91da037cf36a1808d9df1.tar.gz
dexon-solidity-931794001e92cbfe99c91da037cf36a1808d9df1.tar.zst
dexon-solidity-931794001e92cbfe99c91da037cf36a1808d9df1.zip
Merge pull request #4500 from ethereum/v050-interface-functions-must-be-external
[BREAKING] interface functions must be external
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp
index f76f1196..be74c5ff 100644
--- a/test/libsolidity/SolidityEndToEndTest.cpp
+++ b/test/libsolidity/SolidityEndToEndTest.cpp
@@ -11649,7 +11649,7 @@ BOOST_AUTO_TEST_CASE(interface_contract)
char const* sourceCode = R"(
interface I {
event A();
- function f() public returns (bool);
+ function f() external returns (bool);
function() external payable;
}