solidity/test/libsolidity/syntaxTests/iceRegressionTests/oversized_var.sol
2020-09-14 02:17:53 +02:00

19 lines
949 B
Solidity

contract b {
struct c {
uint [2 ** 253] a;
}
c d;
function e() public view {
c storage x = d;
x.a[0];
function()[3**44] storage fs;
}
}
// ----
// Warning 7325: (66-67): Type struct b.c 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.
// Warning 7325: (111-112): Type struct b.c 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.
// Warning 7325: (152-169): Type function ()[984770902183611232881] 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.
// Warning 2072: (152-180): Unused local variable.