mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
- style fixes
- added test for uint8 = -1 which doesn't fail; todo: fix that
This commit is contained in:
parent
c7e6bbb82c
commit
0e664b05aa
@ -1856,6 +1856,16 @@ BOOST_AUTO_TEST_CASE(positive_integers_to_signed_out_of_bound_max)
|
|||||||
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode));
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(negative_integers_to_unsigned)
|
||||||
|
{
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract test {
|
||||||
|
uint8 public x = -1;
|
||||||
|
}
|
||||||
|
)";
|
||||||
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user