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

10 lines
165 B
Solidity

contract C {
function() Test;
function f() public {
emit Test();
}
}
// ----
// TypeError 9292: (66-70='Test'): Expression has to be an event invocation.