aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/mapping_array_return_internal.sol
blob: 8837c745b29fd4666a883727ccdf29c3f1888ce6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
contract C {
    mapping(uint=>uint)[] m;
    function f() internal view returns (mapping(uint=>uint)[] storage) {
        return m;
    }
    function g() private view returns (mapping(uint=>uint)[] storage) {
        return m;
    }
    function h() internal view returns (mapping(uint=>uint)[] storage r) {
        r = m;
    }
    function i() private view returns (mapping(uint=>uint)[] storage r) {
        (r,r) = (m,m);
    }
}
// ----