solidity/test/libsolidity/syntaxTests/events/event_nested_array_in_struct.sol

7 lines
206 B
Solidity
Raw Normal View History

contract c {
struct S { uint x; uint[][] arr; }
event E(S);
}
// ----
2019-12-11 16:05:44 +00:00
// TypeError: (61-62): This type is only supported in ABIEncoderV2. Use "pragma experimental ABIEncoderV2;" to enable the feature.