/ libxml2 / test / schemas / bug309338_1.xsd
bug309338_1.xsd
 1  <?xml version="1.0"?>
 2  <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 3  	xmlns:f="urn:test:foo"
 4  	targetNamespace="urn:test:foo">
 5  	<xsd:element name="foo" type="f:fooType"/>
 6  
 7  	<xsd:simpleType name="fooType">
 8  		<xsd:restriction base="xsd:decimal">
 9  			<xsd:minExclusive value="0"/>
10  		</xsd:restriction>
11  	</xsd:simpleType>
12  
13  </xsd:schema>