solidity/test/libsolidity/syntaxTests/events/event_without_emit_deprecated.sol
2022-04-01 23:41:18 -05:00

9 lines
166 B
Solidity

contract C {
event e();
function f() public {
e();
}
}
// ----
// TypeError 3132: (62-65='e()'): Event invocations have to be prefixed by "emit".