Merge pull request #4067 from ethereum/050

[BREAKING] Version 0.5.0
This commit is contained in:
chriseth
2018-05-23 18:11:20 +02:00
committed by GitHub
25 changed files with 274 additions and 115 deletions
@@ -3858,19 +3858,6 @@ BOOST_AUTO_TEST_CASE(conditional_with_all_types)
CHECK_SUCCESS(text);
}
BOOST_AUTO_TEST_CASE(index_access_for_bytes)
{
char const* text = R"(
contract C {
bytes20 x;
function f(bytes16 b) public {
b[uint(x[2])];
}
}
)";
CHECK_SUCCESS(text);
}
BOOST_AUTO_TEST_CASE(uint7_and_uintM_as_identifier)
{
char const* text = R"(