diff options
author | chriseth <chris@ethereum.org> | 2018-07-16 20:43:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-16 20:43:56 +0800 |
commit | 931794001e92cbfe99c91da037cf36a1808d9df1 (patch) | |
tree | 0bfb67ef7175f9758cfef0a4ca8e290570903965 /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | 58667db8b891a535dfc139144271c1bd8a1e067a (diff) | |
parent | 396bf118585d213a397be990b5118a47ac4753c1 (diff) | |
download | dexon-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.cpp | 2 |
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; } |