Merge pull request #4500 from ethereum/v050-interface-functions-must-be-external

[BREAKING] interface functions must be external
This commit is contained in:
chriseth
2018-07-16 14:43:56 +02:00
committed by GitHub
14 changed files with 19 additions and 29 deletions
+1 -1
View File
@@ -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;
}