summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/maybe_SelfRecUnion.ipdl
blob: 3cd5cde22a66f627be557d135566bf368b9f34ad (plain)
1
2
3
4
5
6
7
//error: union `X' is only partially defined

union X { X?; };

protocol maybe_SelfRecUnion {
child: async Msg(X? aa);
};