aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/tupleAssignments/large_component_count.sol
blob: bbf21d7ea7751f6fb66a3c0bba6a22810570a7cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pragma experimental "v0.5.0";
contract C {
    function g() public pure returns (
        uint,
        uint,
        uint,
        uint,
        uint,
        uint,
        uint,
        uint,
        uint,
        uint,
        uint,
        uint,
        uint
    ) { }
    function f() public pure returns (uint, uint, bytes32) {
        uint a;
        uint b;
        (,,,,a,,,,b,,,,) = g();
    }
}
// ----