blob: 0c776b359ccbc8fdbe48f56b358165469eeacb18 (
plain)
1
2
3
4
5
6
7
8
9
|
include protocol PEndpointDecl;
// Basic test that Endpoint types are declared for included protocols.
protocol PEndpointUse {
child:
async Message(Endpoint<PEndpointDeclParent> aEndpointParent,
Endpoint<PEndpointDeclChild> aEndpointChild);
};
|