namespace mozilla {
namespace _ipdltest {

sync protocol PTestPriority {
parent:
    prio(high) async Msg1();
    prio(high) sync Msg2();

child:
    prio(high) async Msg3();
};

} // namespace _ipdltest
} // namespace mozilla