From 76796f8d75f7356b5b6ee532b6fb2c9631f0c622 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Thu, 29 Aug 2013 21:12:39 -0700 Subject: [PATCH] Add forgotten test files --- test/bar.capnp | 8 ++++++++ test/foo.capnp | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 test/bar.capnp create mode 100644 test/foo.capnp 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; +} +