michael@0: include protocol PTestFailedCtorSub; michael@0: michael@0: namespace mozilla { michael@0: namespace _ipdltest { michael@0: michael@0: intr protocol PTestFailedCtor { michael@0: manages PTestFailedCtorSub; michael@0: child: michael@0: intr PTestFailedCtorSub(); michael@0: __delete__(); michael@0: michael@0: state CONSTRUCT: michael@0: call PTestFailedCtorSub goto DEAD; michael@0: state DEAD: michael@0: send __delete__; michael@0: }; michael@0: michael@0: } michael@0: }