summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/Nullable2.ipdl
blob: 3dcd66a321798d04ed9fc0e5311795f571985bba (plain)
1
2
3
4
5
6
7
8
9
10
11
//error: `nullable' qualifier for type `int' is unsupported

union Union {
    nullable int;
};

[ChildProc=any]
protocol Nullable2 {
child:
    async Msg(Union i);
};