mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Test case.
This commit is contained in:
parent
ad751bd3e6
commit
e629cf5bc3
@ -5079,6 +5079,22 @@ BOOST_AUTO_TEST_CASE(invalid_address_length)
|
|||||||
CHECK_WARNING(text, "checksum");
|
CHECK_WARNING(text, "checksum");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(early_exit_on_fatal_errors)
|
||||||
|
{
|
||||||
|
// This tests a crash that occured because we did not stop for fatal errors.
|
||||||
|
char const* text = R"(
|
||||||
|
contract C {
|
||||||
|
struct S {
|
||||||
|
ftring a;
|
||||||
|
}
|
||||||
|
S public s;
|
||||||
|
function s() s {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)";
|
||||||
|
CHECK_ERROR(text, DeclarationError, "Identifier not found or not unique");
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user