summaryrefslogtreecommitdiff
path: root/test/schemas/bug310264_0.xsd
blob: 6f2b333c246aeeba7182d0a7ac2e540912c376e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<xs:schema xmlns:tns="http://myns"
        targetNamespace="http://myns"
        xmlns:xs="http://www.w3.org/2001/XMLSchema"
>

  <xs:element name="a" />

  <xs:complexType name="c" >
        <xs:sequence minOccurs="2" maxOccurs="4">
             <xs:sequence minOccurs="19" maxOccurs="20">
                  <xs:element ref="tns:a" />
             </xs:sequence>
        </xs:sequence>
  </xs:complexType>

  <xs:element name="c" type="tns:c" />

</xs:schema>