summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/list/ctor/test.xsd
blob: f090bb8cdcaf6cf8caeeffd5c877ec7631de8fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">

  <simpleType name="string-list">
    <list itemType="string"/>
  </simpleType>

  <!-- Test name conflict resolution. -->

  <simpleType name="size_type">
    <list itemType="int"/>
  </simpleType>

  <simpleType name="I">
    <list itemType="int"/>
  </simpleType>

</schema>