mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Issue warning for using public visibility for interface functions
This commit is contained in:
@@ -5963,6 +5963,12 @@ BOOST_AUTO_TEST_CASE(interface_function_external)
|
||||
BOOST_AUTO_TEST_CASE(interface_function_public)
|
||||
{
|
||||
char const* text = R"(
|
||||
interface I {
|
||||
function f() public;
|
||||
}
|
||||
)";
|
||||
CHECK_WARNING(text, "Functions in interfaces should be declared external.");
|
||||
text = R"(
|
||||
pragma experimental "v0.5.0";
|
||||
interface I {
|
||||
function f() public;
|
||||
@@ -6306,7 +6312,7 @@ BOOST_AUTO_TEST_CASE(no_unused_warning_interface_arguments)
|
||||
{
|
||||
char const* text = R"(
|
||||
interface I {
|
||||
function f(uint a) pure public returns (uint b);
|
||||
function f(uint a) pure external returns (uint b);
|
||||
}
|
||||
)";
|
||||
CHECK_SUCCESS_NO_WARNINGS(text);
|
||||
|
||||
@@ -181,10 +181,10 @@ BOOST_AUTO_TEST_CASE(interface)
|
||||
{
|
||||
string text = R"(
|
||||
interface D {
|
||||
function f() view public;
|
||||
function f() view external;
|
||||
}
|
||||
contract C is D {
|
||||
function f() view public {}
|
||||
function f() view external {}
|
||||
}
|
||||
)";
|
||||
CHECK_SUCCESS_NO_WARNINGS(text);
|
||||
|
||||
Reference in New Issue
Block a user