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

7 lines
107 B
Solidity
Raw Normal View History

2020-11-23 18:06:44 +00:00
pragma abicoder v2;
contract c {
struct S { uint a ; }
event E(S indexed);
}
// ----