aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVoR0220 <catalanor0220@gmail.com>2016-03-29 02:36:48 +0800
committerVoR0220 <catalanor0220@gmail.com>2016-05-10 00:41:02 +0800
commit4d283b2b304f9c9a85fb6f03346cc7c9d0054daa (patch)
treeacaa0533f4b69037874563fbee97e8fea709cff8 /test
parent93295ae8f8e92d075584d10ac21374f83c43f759 (diff)
downloaddexon-solidity-4d283b2b304f9c9a85fb6f03346cc7c9d0054daa.tar.gz
dexon-solidity-4d283b2b304f9c9a85fb6f03346cc7c9d0054daa.tar.zst
dexon-solidity-4d283b2b304f9c9a85fb6f03346cc7c9d0054daa.zip
currently what we have
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp
index 42d06fd7..90bb7065 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -3434,7 +3434,7 @@ BOOST_AUTO_TEST_CASE(inline_array_fixed_rationals)
char const* text = R"(
contract test {
function f() {
- ufixed8x16[3] memory a = [3.5, 4.1234, 2.5];
+ ufixed8x16[4] memory a = [3.5, 4.1234, 2.5, 4.0];
}
}
)";