summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/encoding/char/iso-8859-1/test.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cxx/tree/encoding/char/iso-8859-1/test.xsd')
-rw-r--r--tests/cxx/tree/encoding/char/iso-8859-1/test.xsd31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/cxx/tree/encoding/char/iso-8859-1/test.xsd b/tests/cxx/tree/encoding/char/iso-8859-1/test.xsd
deleted file mode 100644
index 31b8901..0000000
--- a/tests/cxx/tree/encoding/char/iso-8859-1/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="strenum">
-
- <annotation>
- <documentation>
- Test enum. Valid values are:
- abc
- a&#xE2;c
- &#xF2;bc
- </documentation>
- </annotation>
-
- <restriction base="string">
- <enumeration value="abc"/>
- <enumeration value="a&#xE2;c"/>
- <enumeration value="&#xE2;&#xF2;bc"/>
- </restriction>
- </simpleType>
-
- <complexType name="type">
- <sequence>
- <element name="a" type="string" maxOccurs="unbounded"/>
- <element name="b" type="t:strenum" maxOccurs="unbounded"/>
- </sequence>
- </complexType>
-
- <element name="root" type="t:type"/>
-
-</schema>