aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/508_large_storage_arrays_combined.sol
blob: 917dcec146d2e05e9c857741614c6ea786f723d3 (plain) (tree)
1
2
3
4
5




                                                                                                                                                                                                                   
contract C {
    uint[200][200][2**30][][2**30] x;
}
// ----
// Warning: (17-49): Variable covers a large part of storage and thus makes collisions likely. Either use mappings or dynamic arrays and allow their size to be increased only in small quantities per transaction.