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

15 lines
594 B
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];
}
}
// ----
// Warning 3408: (66-69): Variable "d" 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-07-15 17:50:59 +00:00
// Warning 2332: (110-111): Type "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.