summaryrefslogtreecommitdiff
path: root/tests/cxx/parser/validation/choice/test.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cxx/parser/validation/choice/test.xsd')
-rw-r--r--tests/cxx/parser/validation/choice/test.xsd24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/cxx/parser/validation/choice/test.xsd b/tests/cxx/parser/validation/choice/test.xsd
deleted file mode 100644
index 8132bbb..0000000
--- a/tests/cxx/parser/validation/choice/test.xsd
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0"?>
-<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">
-
- <complexType name="choice">
- <choice maxOccurs="3">
- <element name="a" type="string"/>
- <element name="b" type="string" maxOccurs="unbounded"/>
- <sequence>
- <element name="c" type="string" minOccurs="0"/>
- <element name="d" type="string"/>
- </sequence>
- <any namespace="other" maxOccurs="unbounded"/>
- </choice>
- </complexType>
-
- <complexType name="type">
- <sequence>
- <element name="choice" type="t:choice" maxOccurs="unbounded"/>
- </sequence>
- </complexType>
-
- <element name="root" type="t:type"/>
-
-</schema>