From 62894101529fa0ed7c7f566ea02cc805e889c745 Mon Sep 17 00:00:00 2001 From: VoR0220 Date: Fri, 13 May 2016 00:38:41 -0500 Subject: 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 --- test/libsolidity/SolidityNameAndTypeResolution.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/libsolidity') diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp index 2b67d084..bbc77d34 100644 --- a/test/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp @@ -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); } } )"; -- cgit