mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
16 lines
312 B
Cap'n Proto
16 lines
312 B
Cap'n Proto
|
@0xe4369c441ab8df19;
|
||
|
|
||
|
using Imported = import "UnitTest11b.capnp";
|
||
|
|
||
|
struct OuterStruct {
|
||
|
innerStruct @0: Imported.InnerStruct;
|
||
|
innerInterface @1: Imported.InnerInterface;
|
||
|
}
|
||
|
|
||
|
interface OuterInterface {
|
||
|
struct Wrapper {
|
||
|
innerStruct @0: Imported.InnerStruct;
|
||
|
innerInterface @1: Imported.InnerInterface;
|
||
|
}
|
||
|
}
|