aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/emit_without_event.sol
blob: 5916fc2bb730a10c174bb970ac4310e6dd9d8947 (plain) (blame)
1
2
3
4
5
6
7
8
contract C {
    event A();
    function f() {
        emit A;
    }
}
// ----
// ParserError: (49-49): Expected token LParen got 'Semicolon'