explicit conversion and loosening of binary operations on integer and fixed point types...still other problems

fixed some spaces and deleted lines from failing test
This commit is contained in:
VoR0220
2016-05-18 15:52:09 -05:00
parent 3ba308fb2e
commit 6289410152
2 changed files with 12 additions and 26 deletions
@@ -3688,8 +3688,7 @@ BOOST_AUTO_TEST_CASE(integer_and_fixed_interaction)
char const* text = R"(
contract test {
function f() {
uint128 a = uint128(1) + ufixed(2);
ufixed b = .5 * uint128(7);
ufixed a = uint128(1) + ufixed(2);
}
}
)";