aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/ABIDecoderTests.cpp
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-07-11 21:57:07 +0800
committerErik Kundt <bitshift@posteo.org>2018-07-16 20:49:55 +0800
commit893f4cf092c98d13116741d1ebc19846f6873536 (patch)
tree9449cbeb1abd76e2ca83804caa44c9f93f916de5 /test/libsolidity/ABIDecoderTests.cpp
parent931794001e92cbfe99c91da037cf36a1808d9df1 (diff)
downloaddexon-solidity-893f4cf092c98d13116741d1ebc19846f6873536.tar.gz
dexon-solidity-893f4cf092c98d13116741d1ebc19846f6873536.tar.zst
dexon-solidity-893f4cf092c98d13116741d1ebc19846f6873536.zip
Specifies visibility in unit tests.
Diffstat (limited to 'test/libsolidity/ABIDecoderTests.cpp')
-rw-r--r--test/libsolidity/ABIDecoderTests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/ABIDecoderTests.cpp b/test/libsolidity/ABIDecoderTests.cpp
index 2cfa27d6..28f982c4 100644
--- a/test/libsolidity/ABIDecoderTests.cpp
+++ b/test/libsolidity/ABIDecoderTests.cpp
@@ -182,7 +182,7 @@ BOOST_AUTO_TEST_CASE(dynamic_nested_arrays)
public pure returns (uint, uint, uint, uint, uint, uint, uint) {
return (a, b.length, b[1].length, b[1][1], c[1].length, c[1][1][1], d);
}
- function test() view returns (uint, uint, uint, uint, uint, uint, uint) {
+ function test() public view returns (uint, uint, uint, uint, uint, uint, uint) {
uint16[][] memory b = new uint16[][](3);
b[0] = new uint16[](2);
b[0][0] = 0x55;