aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity
diff options
context:
space:
mode:
authorVoR0220 <catalanor0220@gmail.com>2016-05-13 13:38:41 +0800
committerVoR0220 <catalanor0220@gmail.com>2016-05-19 04:52:09 +0800
commit62894101529fa0ed7c7f566ea02cc805e889c745 (patch)
treef003e96ed0bba2092e1965b17967c4b1492f8cbf /test/libsolidity
parent3ba308fb2e4bc910e880431bc708ab4929c7aec2 (diff)
downloaddexon-solidity-62894101529fa0ed7c7f566ea02cc805e889c745.tar.gz
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/libsolidity')
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp3
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);
}
}
)";