aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/563_event_without_emit_deprecated.sol
blob: e9a566714c44e452b26c8995c102b28c5cbc44c4 (plain) (tree)
1
2
3
4
5
6
7
8






                         
                                                                       
contract C {
    event e();
    function f() public {
        e();
    }
}
// ----
// TypeError: (62-65): Event invocations have to be prefixed by "emit".