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

Additional tests

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

10 lines
122 B
Solidity

library L { event E(uint8); }
contract B {
constructor() {
emit L.E(0);
}
}
contract C is B {}
// ----