solidity/test/libsolidity/syntaxTests/parsing/emit_without_event.sol
2018-05-04 13:31:56 +01:00

9 lines
114 B
Solidity

contract C {
event A();
function f() {
emit A;
}
}
// ----
// ParserError: (49-49): Expected '(' but got ';'