<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<xsd:element name="doc" type="foo"/>
	<xsd:complexType name="foo">
		<xsd:sequence>
			<xsd:group ref="g1"/>
			<xsd:group ref="g2"/>
			<xsd:group ref="g3"/>
			<xsd:group ref="g4"/>
			<xsd:choice>
				<xsd:element name="c1"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="c2"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="c3"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="c4"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:group name="g1">
		<xsd:all>
			<xsd:element name="g1"/>
		</xsd:all>
	</xsd:group>
	<xsd:group name="g2">
		<xsd:all>
			<xsd:element name="g2"/>
		</xsd:all>
	</xsd:group>
	<xsd:group name="g3">
		<xsd:all>
			<xsd:element name="g3"/>
		</xsd:all>
	</xsd:group>
	<xsd:group name="g4">
		<xsd:all>
			<xsd:element name="g4"/>
		</xsd:all>
	</xsd:group>
</xsd:schema>
