solidity/test/libsolidity/ASTJSON/event_emitted_from_foreign_contract.sol
2023-07-21 21:49:09 +02:00

11 lines
155 B
Solidity

contract C {
event E(address indexed sender);
}
contract D {
function test(address sender) public {
emit C.E(msg.sender);
}
}
// ----