aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/561_event_emit_complex.sol
blob: 19448615003dc0e9cae12c7656a9977e81f2a3bf (plain) (blame)
1
2
3
4
5
6
7
contract C {
    event e(uint a, string b);
    function f() public {
        emit e(2, "abc");
        emit e({b: "abc", a: 8});
    }
}