<?xml version='1.0'?>
<!-- Resource Indication - Multiple Special Classes -->

<rdf:RDF
  xmlns:rdf ="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:xsd ="http://www.w3.org/2000/10/XMLSchema#"
  xmlns:daml="http://www.daml.org/2001/03/daml+oil#"
  xmlns     ="http://www.daml.org/validator/examples/cv5.daml#"
>

<daml:Class rdf:ID="Color"/>
<daml:Class rdf:ID="Pastel"/>
<daml:Class rdf:ID="Gray"/>

<!-- is there a possibility of this being valid? -->

<!-- This is a ComplementOf and an Intersection -->
<daml:Class rdf:ID="SomeClass">
  <daml:complementOf rdf:resource="#Color"/>
  <daml:intersectionOf rdf:parseType="daml:collection">
    <daml:Class rdf:about="#Pastel"/>
    <daml:Class rdf:about="#Gray"/>
  </daml:intersectionOf>
</daml:Class>

</rdf:RDF>
