aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityEndToEndTest.cpp
diff options
context:
space:
mode:
authorChristian Parpart <christian@ethereum.org>2018-07-12 20:57:42 +0800
committerChristian Parpart <christian@ethereum.org>2018-07-16 18:15:36 +0800
commit396bf118585d213a397be990b5118a47ac4753c1 (patch)
treecc2f955335203950ba019a2fd1560a5ebf53003e /test/libsolidity/SolidityEndToEndTest.cpp
parent31e56f9f9976cee44f000226318dca566f0f0b79 (diff)
downloaddexon-solidity-396bf118585d213a397be990b5118a47ac4753c1.tar.gz
dexon-solidity-396bf118585d213a397be990b5118a47ac4753c1.tar.zst
dexon-solidity-396bf118585d213a397be990b5118a47ac4753c1.zip
enforce interface-functions to be external-declared
- libsolidity: Enforce interface-functions must be external-declared. - Changelog adapted to reflect changes wrt. functions in interfaces. - test: Adjustments according to prior interface-function changes. - tests: Adapting SolidityEndToEndTest to interface-function change. - docs: Adapted documentation to interface-function change.
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 bee83007..1427826e 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;
}