<?xml version='1.0'?>
<!-- Literal Expected Indication -->

<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/dt2.daml#"
>

<daml:Class rdf:ID="Person"/>

<daml:DatatypeProperty rdf:ID="age"/>

<!-- OK -->
<Person rdf:ID="Charles">
  <age><xsd:integer rdf:value="10"/></age>
</Person>

<!-- Force the typed literal to have two values -->
<Person rdf:ID="Lucy">
  <age><xsd:integer rdf:about="#int1" rdf:value="20"/></age>
</Person>

<xsd:integer rdf:about="#int1" rdf:value="30"/>

</rdf:RDF>
