blob: df90528ec6f0f73f29f5301d68c9c4f51a74c032 [file] [log] [blame]
library test.name;
protocol Child {
};
protocol Parent {
GetChild() -> (Child c);
GetChildRequest() -> (request<Child> r);
TakeChild(Child c);
TakeChildRequest(request<Child> r);
};