solidity/test/libsolidity/syntaxTests/parsing/arrays_in_events.sol
2021-04-20 17:38:29 +02:00

5 lines
77 B
Solidity

contract c {
event e(uint[10] a, bytes7[8] indexed b, c[3] x);
}
// ----