summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/undefMutualRecUnion.ipdl
blob: 3fc99bbb95a522f9fc87e34c51c0e4c0eaa54861 (plain)
1
2
3
4
5
6
7
8
9
10
11
//error: union `X' is only partially defined
//error: union `Y' is only partially defined
//error: union `Z' is only partially defined

union X { Y; };
union Y { Z; };
union Z { X; };

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