mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
16 lines
294 B
Cap'n Proto
16 lines
294 B
Cap'n Proto
@0x8151238e9f9884c8;
|
|
$import "/capnp/c++.capnp".namespace("UnitTest4");
|
|
|
|
using Base = import "UnitTest4.capnp";
|
|
|
|
interface I1 {
|
|
interface Node extends (Base.Node) {}
|
|
struct Classes {
|
|
sub @0: Sub;
|
|
}
|
|
struct Sub {
|
|
const prototype :Base.Classes = ( i1 = (sub = ()) );
|
|
data @0: Bool;
|
|
}
|
|
}
|