The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# simple all test

--- |
  <?xml version="1.0" encoding="UTF-8"?>
  <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="foo">
      <complexType>
        <all>
          <element name="this" />
          <element name="other" maxOccurs="unbounded"/>
          <element name="that" />
        </all>
      </complexType>
    </element>
  </schema>

--- |
  <foo>
    <this/>
    <that/>
  </foo>
--- >
FAIL /maxOccurs/