mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #211 from chriseth/fix_successor
Work around bug in MSVC/Boost for u256->unsigned conversion.
This commit is contained in:
commit
c881d103b2
@ -359,6 +359,16 @@ BOOST_AUTO_TEST_CASE(store_tags_as_unions)
|
|||||||
// BOOST_CHECK_EQUAL(2, numSHA3s);
|
// BOOST_CHECK_EQUAL(2, numSHA3s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(successor_not_found_bug)
|
||||||
|
{
|
||||||
|
// This bug was caused because MSVC chose to use the u256->bool conversion
|
||||||
|
// instead of u256->unsigned
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract greeter { function greeter() {} }
|
||||||
|
)";
|
||||||
|
compileBothVersions(sourceCode);
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cse_intermediate_swap)
|
BOOST_AUTO_TEST_CASE(cse_intermediate_swap)
|
||||||
{
|
{
|
||||||
eth::KnownState state;
|
eth::KnownState state;
|
||||||
|
Loading…
Reference in New Issue
Block a user