mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
"external" visibility specifier.
This commit is contained in:
parent
44103be9b0
commit
7dd200d140
@ -1083,6 +1083,56 @@ BOOST_AUTO_TEST_CASE(enum_duplicate_values)
|
||||
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(private_visibility)
|
||||
{
|
||||
char const* sourceCode = R"(
|
||||
contract base {
|
||||
function f() private {}
|
||||
}
|
||||
contract derived is base {
|
||||
function g() { f(); }
|
||||
}
|
||||
)";
|
||||
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), DeclarationError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(private_visibility_via_explicit_base_access)
|
||||
{
|
||||
char const* sourceCode = R"(
|
||||
contract base {
|
||||
function f() private {}
|
||||
}
|
||||
contract derived is base {
|
||||
function g() { base.f(); }
|
||||
}
|
||||
)";
|
||||
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(external_visibility)
|
||||
{
|
||||
char const* sourceCode = R"(
|
||||
contract c {
|
||||
function f() external {}
|
||||
function g() { f(); }
|
||||
}
|
||||
)";
|
||||
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), DeclarationError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(external_base_visibility)
|
||||
{
|
||||
char const* sourceCode = R"(
|
||||
contract base {
|
||||
function f() external {}
|
||||
}
|
||||
contract derived is base {
|
||||
function g() { base.f(); }
|
||||
}
|
||||
)";
|
||||
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
||||
}
|
||||
|
@ -735,6 +735,24 @@ BOOST_AUTO_TEST_CASE(malformed_enum_declaration)
|
||||
BOOST_CHECK_THROW(parseText(text), ParserError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(external_function)
|
||||
{
|
||||
char const* text = R"(
|
||||
contract c {
|
||||
function x() external {}
|
||||
})";
|
||||
BOOST_CHECK_NO_THROW(parseTextExplainError(text));
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(external_variable)
|
||||
{
|
||||
char const* text = R"(
|
||||
contract c {
|
||||
uint external x;
|
||||
})";
|
||||
BOOST_CHECK_THROW(parseText(text), ParserError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user