aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/hybrid/file-per-type/a.xsd
blob: 9abe165f4798d0e04cb3a582595c98f7fdab05fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" ?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">

  <include schemaLocation="b.xsd"/>

  <complexType name="base">
    <sequence>
      <element name="a" type="int" minOccurs="0"/>
      <element name="b" type="boolean"/>
      <element name="c" type="t:derived" minOccurs="0"/>
    </sequence>
  </complexType>

</schema>