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

struct X {
    X? x;
};

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