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

7 lines
197 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.