diff options
author | VoR0220 <catalanor0220@gmail.com> | 2016-05-13 13:38:41 +0800 |
---|---|---|
committer | VoR0220 <catalanor0220@gmail.com> | 2016-05-19 04:52:09 +0800 |
commit | 62894101529fa0ed7c7f566ea02cc805e889c745 (patch) | |
tree | f003e96ed0bba2092e1965b17967c4b1492f8cbf /test | |
parent | 3ba308fb2e4bc910e880431bc708ab4929c7aec2 (diff) | |
download | dexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.tar dexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.tar.gz dexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.tar.bz2 dexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.tar.lz dexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.tar.xz dexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.tar.zst dexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.zip |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/SolidityNameAndTypeResolution.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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); } } )"; |