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

union X { X; };

protocol undefSelfRecUnion {
child: async __delete__(X x);
};