blob: d91949de458072139b94d49beae05f1f12ca9ec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
include protocol cyclecheck_Child;
include protocol cyclecheck_Parent;
protocol cyclecheck_Grandchild {
manager cyclecheck_Child;
manages cyclecheck_Parent;
child:
cyclecheck_Parent();
async __delete__();
};
|