mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Work around bug in MSVC/Boost for u256->unsigned conversion.
This commit is contained in:
parent
321b1ed221
commit
1bdc7eed31
@ -359,6 +359,16 @@ BOOST_AUTO_TEST_CASE(store_tags_as_unions)
|
||||
// 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)
|
||||
{
|
||||
eth::KnownState state;
|
||||
|
Loading…
Reference in New Issue
Block a user