mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
)";
|
||||
|
||||
Reference in New Issue
Block a user