solidity/test/libsolidity/syntaxTests/largeTypes/oversized_array.sol

9 lines
222 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: GPL-3.0
pragma solidity >= 0.0;
contract C {
uint[2**255][2] a;
}
// ----
// TypeError 7676: (60-97): Contract too large for storage.
2020-07-14 08:32:11 +00:00
// TypeError 1534: (77-94): Type too large for storage.