Fix response objects not referencing parents correctly

Fixes #103
This commit is contained in:
Jason Paryani
2016-06-17 13:50:42 -07:00
parent e4c128de61
commit 5ffe7eb2f6
3 changed files with 55 additions and 2 deletions

13
test/test_response.capnp Normal file
View File

@@ -0,0 +1,13 @@
@0x84249be5c3bff005;
interface Foo {
foo @0 () -> (val :UInt32);
}
struct Bar {
foo @0 :Foo;
}
interface Baz {
grault @0 () -> (bar: Bar);
}