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

union Union {
    nullable int;
};

protocol Nullable2 {
child:
    async Msg(Union i);
};