summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/enumeration/inheritance/test.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cxx/tree/enumeration/inheritance/test.xsd')
-rw-r--r--tests/cxx/tree/enumeration/inheritance/test.xsd22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/cxx/tree/enumeration/inheritance/test.xsd b/tests/cxx/tree/enumeration/inheritance/test.xsd
deleted file mode 100644
index cf2eeb1..0000000
--- a/tests/cxx/tree/enumeration/inheritance/test.xsd
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0"?>
-<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">
-
- <simpleType name="side">
- <restriction base="string">
- <enumeration value="top"/>
- <enumeration value="left"/>
- <enumeration value="bottom"/>
- <enumeration value="right"/>
- </restriction>
- </simpleType>
-
- <simpleType name="top-bottom">
- <restriction base="t:side">
- <enumeration value="top"/>
- <enumeration value="bottom"/>
- </restriction>
- </simpleType>
-
- <element name="root" type="t:top-bottom"/>
-
-</schema>