summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/Nullable.ipdl
blob: 6a81e125d9693447e0e76adfcec92acf1ade743f (plain)
1
2
3
4
5
6
7
8
9
10
11
union Union {
    nullable Nullable;
    nullable Nullable[];
};

protocol Nullable {
child:
    async Msg(nullable Nullable n);
    async Msg2(nullable Nullable[] N);
    async Msg3(Union u);
};