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

struct X { X x; };

[ChildProc=any]
protocol undefSelfRecStruct {
child: async __delete__(X x);
};