solidity/test/libsolidity/syntaxTests/emit/emit_empty.sol

8 lines
120 B
Solidity

contract C {
function f() public {
emit;
}
}
// ----
// ParserError 5620: (45-46): Expected event name or path.