summaryrefslogtreecommitdiff
path: root/xsd-tests/morphing/anonymous/basic/test.xsd
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-18 18:48:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-24 22:20:33 +0300
commita8ce5c380c69539fe0c7c62c397634d9d0c9fde2 (patch)
treec8db5c9b99416ca4686af953387f474af15bc92e /xsd-tests/morphing/anonymous/basic/test.xsd
parent7420f85ea19b0562ffdd8123442f32bc8bac1267 (diff)
Switch to build2
Diffstat (limited to 'xsd-tests/morphing/anonymous/basic/test.xsd')
-rw-r--r--xsd-tests/morphing/anonymous/basic/test.xsd20
1 files changed, 20 insertions, 0 deletions
diff --git a/xsd-tests/morphing/anonymous/basic/test.xsd b/xsd-tests/morphing/anonymous/basic/test.xsd
new file mode 100644
index 0000000..ce930d8
--- /dev/null
+++ b/xsd-tests/morphing/anonymous/basic/test.xsd
@@ -0,0 +1,20 @@
+<?xml version="1.0"?>
+<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">
+
+ <!-- Test xpath for nested anonymous types. -->
+
+ <element name="a">
+ <complexType>
+ <sequence>
+ <element name="b">
+ <complexType>
+ <sequence>
+ <element name="c" type="string"/>
+ </sequence>
+ </complexType>
+ </element>
+ </sequence>
+ </complexType>
+ </element>
+
+</schema>