1<!--
2  Copyright World Wide Web Consortium, (Massachusetts Institute of
3  Technology, Institut National de Recherche en Informatique et en
4  Automatique, Keio University).
5
6  All Rights Reserved.
7
8  Please see the full Copyright clause at
9  <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
11  $Id: error001.rdf,v 1.1 2001/09/10 14:31:48 barstow Exp $
12-->
13<!--
14
15 Assumed base URI:
16
17http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/error001.nrdf
18
19 Description:
20
21 This is not legal RDF; specifying an rdf:parseType of "Literal" and an
22 rdf:resource attribute at the same time is an error.
23
24-->
25<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
26  xmlns:random="http://random.ioctl.org/#">
27
28<rdf:Description rdf:about="http://random.ioctl.org/#bar">
29  <random:someProperty rdf:parseType="Literal"
30    rdf:resource="http://random.ioctl.org/#foo" />
31</rdf:Description>
32
33</rdf:RDF>
34