solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/070_struct_accessor_one_array_only.sol

7 lines
184 B
Solidity
Raw Normal View History

contract test {
struct Data { uint[15] m_array; }
Data public data;
}
// ----
// TypeError 6744: (58-74): Internal or recursive type is not allowed for public state variables.