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