solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/563_event_without_emit_deprecated.sol

9 lines
157 B
Solidity
Raw Normal View History

contract C {
event e();
function f() public {
e();
}
}
// ----
// Warning: (62-65): Invoking events without "emit" prefix is deprecated.