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

struct X { X x; };

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