diff options
Diffstat (limited to 'libxml2/test/schemas/all_2.xsd')
-rw-r--r-- | libxml2/test/schemas/all_2.xsd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libxml2/test/schemas/all_2.xsd b/libxml2/test/schemas/all_2.xsd new file mode 100644 index 0000000..630b0df --- /dev/null +++ b/libxml2/test/schemas/all_2.xsd @@ -0,0 +1,11 @@ +<?xml version="1.0"?> +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> + <xsd:element name="doc"> + <xsd:complexType> + <xsd:all> + <xsd:element name="a"/> + <xsd:element minOccurs="0" name="b"/> + </xsd:all> + </xsd:complexType> + </xsd:element> +</xsd:schema> |