aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/hybrid/file-per-type/a.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cxx/hybrid/file-per-type/a.xsd')
-rw-r--r--tests/cxx/hybrid/file-per-type/a.xsd14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/cxx/hybrid/file-per-type/a.xsd b/tests/cxx/hybrid/file-per-type/a.xsd
new file mode 100644
index 0000000..9abe165
--- /dev/null
+++ b/tests/cxx/hybrid/file-per-type/a.xsd
@@ -0,0 +1,14 @@
+<?xml version="1.0" ?>
+<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">
+
+ <include schemaLocation="b.xsd"/>
+
+ <complexType name="base">
+ <sequence>
+ <element name="a" type="int" minOccurs="0"/>
+ <element name="b" type="boolean"/>
+ <element name="c" type="t:derived" minOccurs="0"/>
+ </sequence>
+ </complexType>
+
+</schema>