diff --git a/test/bar.capnp b/test/bar.capnp new file mode 100644 index 0000000..7bb0044 --- /dev/null +++ b/test/bar.capnp @@ -0,0 +1,8 @@ +@0x84ed73ce30ad1d3e; + +using Foo = import "foo.capnp"; + +struct Bar { + id @0 :UInt32; + foo @1 :Foo.Foo; +} diff --git a/test/foo.capnp b/test/foo.capnp new file mode 100644 index 0000000..7196495 --- /dev/null +++ b/test/foo.capnp @@ -0,0 +1,7 @@ +@0x84ed73ce30ad1d3f; + +struct Foo { + id @0 :UInt32; + name @1 :Text; +} +