summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/naming/knr/test.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cxx/tree/naming/knr/test.xsd')
-rw-r--r--tests/cxx/tree/naming/knr/test.xsd31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/cxx/tree/naming/knr/test.xsd b/tests/cxx/tree/naming/knr/test.xsd
deleted file mode 100644
index 4361544..0000000
--- a/tests/cxx/tree/naming/knr/test.xsd
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0"?>
-<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">
-
- <simpleType name="gender">
- <restriction base="string">
- <enumeration value="male"/>
- <enumeration value="female"/>
- </restriction>
- </simpleType>
-
- <complexType name="type">
- <sequence>
- <element name="foo" minOccurs="0">
- <complexType>
- <sequence>
- <element name="a" type="string"/>
- <element name="b" type="string"/>
- </sequence>
- </complexType>
- </element>
- <element name="bar" type="string"/>
- <element name="baz" type="string" maxOccurs="unbounded"/>
- <any namespace="other" processContents="skip" maxOccurs="unbounded"/>
- </sequence>
- <attribute name="fox" type="string" default="hello"/>
- <anyAttribute namespace="##other" processContents="skip"/>
- </complexType>
-
- <element name="root" type="string"/>
-
-</schema>