solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/094_event_inheritance.sol

9 lines
227 B
Solidity

contract base {
event e(uint a, bytes3 indexed s, bool indexed b);
}
contract c is base {
function f() public { e(2, "abc", true); }
}
// ----
// Warning: (120-137): Invoking events without "emit" prefix is deprecated.