summaryrefslogtreecommitdiff
path: root/xml/tests/testData/completion/InheritedAttr/test.xsd
blob: bb9e9824cf51fb399baa382180f53df48c3e5ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified"
           elementFormDefault="qualified"
           targetNamespace="http://test"
           xmlns:local="http://test"
           xmlns:library="http://library"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="http://library"/>
  <xs:element name="foo" type='local:fooType'/>
  <xs:complexType name="fooType">
    <xs:complexContent>
      <xs:extension base='library:barType'/>
    </xs:complexContent>
  </xs:complexType>
</xs:schema>