aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol
blob: 9adf6f1256658da39bb721caaa54cc662f9249e5 (plain) (blame)
1
2
3
4
5
6
contract c {
    uint[10] a;
    uint[] a2;
    struct x { uint[2**20] b; y[1] c; }
    struct y { uint d; mapping(uint=>x)[] e; }
}