Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 include protocol PTestFailedCtorSub;
3 namespace mozilla {
4 namespace _ipdltest {
6 intr protocol PTestFailedCtor {
7 manages PTestFailedCtorSub;
8 child:
9 intr PTestFailedCtorSub();
10 __delete__();
12 state CONSTRUCT:
13 call PTestFailedCtorSub goto DEAD;
14 state DEAD:
15 send __delete__;
16 };
18 }
19 }