aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/emit_without_event.sol
blob: b838b4af176300de17a1421052f3dea54a419e44 (plain) (tree)
1
2
3
4
5
6
7
8






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