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

5 lines
79 B
Solidity

contract c {
event e(uint a, bytes32 indexed s, bool indexed b);
}
// ----