solidity/test/libsolidity/syntaxTests/iceRegressionTests/oversized_var.sol

21 lines
1.5 KiB
Solidity
Raw Normal View History

contract b {
struct c {
uint [2 ** 253] a;
}
c d;
2020-07-15 17:50:59 +00:00
function e() public view {
c storage x = d;
x.a[0];
function()[3**44] storage fs;
}
}
// ----
2020-09-14 00:17:53 +00:00
// 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.
2020-09-15 23:06:54 +00:00
// Warning 7325: (66-67): Type uint256[14474011154664524427946373126085988481658748083205070504932198000989141204992] 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.
2020-09-14 00:17:53 +00:00
// 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.
2020-09-15 23:06:54 +00:00
// Warning 7325: (111-112): Type uint256[14474011154664524427946373126085988481658748083205070504932198000989141204992] 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.
2020-09-14 00:17:53 +00:00
// 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.