solidity/test/libsolidity/syntaxTests/parsing/arrays_in_events.sol

4 lines
69 B
Solidity
Raw Normal View History

2018-05-17 07:04:39 +00:00
contract c {
event e(uint[10] a, bytes7[8] indexed b, c[3] x);
}