aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/094_event_inheritance.sol
blob: b13d57551819f01c3257897a73e7edad24d57477 (plain) (tree)
1
2
3
4
5
6
7



                                                      
                                                   

       
contract base {
    event e(uint a, bytes3 indexed s, bool indexed b);
}
contract c is base {
    function f() public { emit e(2, "abc", true); }
}
// ----