diff options
Diffstat (limited to 'tests/auto/xmlpatternsvalidator/files/invalid_schema.xsd')
-rw-r--r-- | tests/auto/xmlpatternsvalidator/files/invalid_schema.xsd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/xmlpatternsvalidator/files/invalid_schema.xsd b/tests/auto/xmlpatternsvalidator/files/invalid_schema.xsd new file mode 100644 index 0000000..99e3525 --- /dev/null +++ b/tests/auto/xmlpatternsvalidator/files/invalid_schema.xsd @@ -0,0 +1,12 @@ +<?xml version="1.0"?> +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> + + <xsd:element name="hello"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="world" type="xsd:string" maxOccurs="-2345"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema> |