mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Tests for constructor visibility
This commit is contained in:
parent
7af8ecc27a
commit
65c4e65cb3
@ -3999,6 +3999,16 @@ BOOST_AUTO_TEST_CASE(constant_constructor)
|
||||
BOOST_CHECK(expectError(text, false) == Error::Type::TypeError);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(external_constructor)
|
||||
{
|
||||
char const* text = R"(
|
||||
contract test {
|
||||
function test() external {}
|
||||
}
|
||||
)";
|
||||
BOOST_CHECK(expectError(text, false) == Error::Type::TypeError);
|
||||
}
|
||||
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user