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

Additional tests

Revert changes to the Natspec
2023-03-08 08:50:05 +01:00

10 lines
104 B
Solidity

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