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

8 lines
284 B
Solidity
Raw Normal View History

pragma experimental ABIEncoderV2;
contract c {
event E(uint[][] indexed);
}
// ----
// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments.
2018-08-15 14:58:41 +00:00
// TypeError: (59-67): Indexed reference types cannot yet be used with ABIEncoderV2.