From 9547c4563c09fa816330ccd539d393344ac03fb4 Mon Sep 17 00:00:00 2001 From: LianaHus Date: Wed, 23 Sep 2015 17:31:37 +0200 Subject: fixed-sized arrays as return type Conflicts: test/libsolidity/SolidityEndToEndTest.cpp --- test/libsolidity/SolidityEndToEndTest.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'test/libsolidity') diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 8026f216..42dfcd37 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -5325,6 +5325,25 @@ BOOST_AUTO_TEST_CASE(strings_in_struct) BOOST_CHECK(callContractFunction("getLast()") == encodeDyn(s)); } +BOOST_AUTO_TEST_CASE(fixed_arrays_as_return_type) +{ + char const* sourceCode = R"( + contract A { + function f() constant returns (uint16[5] arr) + { + } + } + contract B { + function f() + { + var a = new A(); + uint16[5] memory res = a.f(); + } + } + )"; + compileAndRun(sourceCode, 0, "B"); +} + BOOST_AUTO_TEST_SUITE_END() } -- cgit