solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/081_event_too_many_indexed.sol

6 lines
166 B
Solidity
Raw Normal View History

contract c {
event e(uint indexed a, bytes3 indexed b, bool indexed c, uint indexed d);
}
// ----
// TypeError: (17-91): More than 3 indexed arguments for event.