Chris@50: # Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors Chris@50: # Licensed under the MIT License: Chris@50: # Chris@50: # Permission is hereby granted, free of charge, to any person obtaining a copy Chris@50: # of this software and associated documentation files (the "Software"), to deal Chris@50: # in the Software without restriction, including without limitation the rights Chris@50: # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell Chris@50: # copies of the Software, and to permit persons to whom the Software is Chris@50: # furnished to do so, subject to the following conditions: Chris@50: # Chris@50: # The above copyright notice and this permission notice shall be included in Chris@50: # all copies or substantial portions of the Software. Chris@50: # Chris@50: # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR Chris@50: # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, Chris@50: # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE Chris@50: # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER Chris@50: # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, Chris@50: # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN Chris@50: # THE SOFTWARE. Chris@50: Chris@50: @0xc64a3bf0338a124a; Chris@50: Chris@50: using Import1 = import "/capnp/schema.capnp"; Chris@50: using Import2 = import "test-import.capnp"; Chris@50: using Import3 = import "test.capnp"; Chris@50: Chris@50: struct TestImport2 { Chris@50: foo @0 :Import3.TestAllTypes; Chris@50: bar @1 :Import1.Node; Chris@50: baz @2 :Import2.TestImport; Chris@50: }