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

  <!-- Test duplicate element handling -->

  <complexType name="type">
    <sequence>
      <element name="a" type="int"/>
      <element name="a" type="int"/>
      <element name="a" type="int"/>
    </sequence>
  </complexType>

  <element name="root" type="t:type"/>

</schema>