<?xml version='1.0'?>

<!-- Incorrect Range Indication - Expect a Class get a different Class -->

<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:daml="http://www.daml.org/2001/03/daml+oil#"
  xmlns:ont1="http://www.daml.org/validator/examples/ont1.daml#"
  xmlns     ="http://www.daml.org/validator/examples/st3.daml#"
>
<!-- OK -->
<ont1:Male rdf:ID="dave">
  <ont1:name>Dave</ont1:name>
</ont1:Male>

<!-- OK -->
<ont1:Male rdf:ID="justin">
  <ont1:name>Justin</ont1:name>
  <ont1:hasFather rdf:resource="#dave"/>
</ont1:Male>

<!-- The range for hasMother is Female, not Male -->
<ont1:Female rdf:ID="fern">
   <ont1:hasMother rdf:resource="#dave"/>
</ont1:Female>

</rdf:RDF>
