summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/prefix/foo.xsd
blob: 97a35cf9ecc559bc2c15caa352148e1a9c37b0cd (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:f="foo"
	targetNamespace="foo">

  <element name="efoo" type="int"/>

  <complexType name="base">
    <sequence>
      <element name="x" type="int"/>
    </sequence>
  </complexType>

  <element name="base" type="f:base"/>

</schema>