solidity/test/libsolidity/ASTJSON/event_inheritance.sol
chriseth 1e63615206 Export all events.
Update tests.

Additional tests

Revert changes to the Natspec
2023-05-03 14:08:27 -03:00

12 lines
113 B
Solidity

interface B {
event EB();
}
contract C is B {
event EC();
}
contract D is C {
event ED();
}
// ----