From 02789acf29d76263e18d2f81cf86434fb439ddba Mon Sep 17 00:00:00 2001 From: Vaci Koblizek Date: Mon, 2 Nov 2020 15:11:25 +0000 Subject: [PATCH] add TestInterface.baz. Stub out broken TestGenerics --- runtime/src/test/schema/test.capnp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/src/test/schema/test.capnp b/runtime/src/test/schema/test.capnp index 1a30b38..d6c2f33 100644 --- a/runtime/src/test/schema/test.capnp +++ b/runtime/src/test/schema/test.capnp @@ -24,6 +24,7 @@ struct TestAllTypes { interface TestInterface { foo @0 (i :UInt32, j :Bool) -> (x :Text); bar @1 () -> (); + baz @2 (s: TestAllTypes); } interface TestExtends extends(TestInterface) { @@ -49,7 +50,7 @@ interface TestPipeline { struct TestGenerics(Foo, Bar) { foo @0 :Foo; - rev @1 :TestGenerics(Bar, Foo); +# rev @1 :TestGenerics(Bar, Foo); interface Interface(Qux) { }