solidity/test/libsolidity/syntaxTests/events/event_struct_indexed_v2.sol
2020-11-24 14:57:45 +01:00

7 lines
107 B
Solidity

pragma abicoder v2;
contract c {
struct S { uint a ; }
event E(S indexed);
}
// ----