aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/tupleAssignments/large_component_count.sol
blob: f14641cb9fcf15ef4ac43c315c57accb9ceab5ce (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
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();
    }
}
// ----