libxml2/test/schemas/issue40_0.xsd
Nick Wellnhofer e8c9cd5c7a Fix Schema determinism check of ##other namespaces
Non-compound (##local) and compound string atoms are always disjoint
regardless of whether the compound atom is negated (##other).

Closes #40.
2019-09-16 15:36:02 +02:00

11 lines
376 B
XML

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="aaa_ns" xmlns="http://www.w3.org/1999/XSL/Transform">
<xsd:element name="aaa">
<xsd:complexType>
<xsd:choice>
<xsd:any namespace="##other" processContents="skip" />
<xsd:any namespace="##local" processContents="skip" />
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>