solidity/test/libsolidity/ASTJSON/event_aggregated_contract.sol

16 lines
175 B
Solidity
Raw Normal View History

contract C {
event e();
function f() public {
emit e();
}
}
contract D {
C c;
constructor() {
c = new C();
c.f();
}
}
// ----