From 4b75ac38a47f4d010a9f33e1e355b2832597bd24 Mon Sep 17 00:00:00 2001 From: David Renshaw Date: Mon, 7 Dec 2015 15:35:36 -0500 Subject: [PATCH] Oops, forgot to check in the schema. --- compiler/src/test/schema/test-import.capnp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 compiler/src/test/schema/test-import.capnp diff --git a/compiler/src/test/schema/test-import.capnp b/compiler/src/test/schema/test-import.capnp new file mode 100644 index 0000000..d5f7cb0 --- /dev/null +++ b/compiler/src/test/schema/test-import.capnp @@ -0,0 +1,12 @@ +@0xd693321951fee8f3; + +using Java = import "/capnp/java.capnp"; +$Java.package("org.capnproto.testimport"); +$Java.outerClassname("TestImport"); + + +using import "test.capnp".TestAllTypes; + +struct Foo { + importedStruct @0 :TestAllTypes; +}