1<?xml version="1.0"?>
2
3<!--
4  Copyright World Wide Web Consortium, (Massachusetts Institute of
5  Technology, Institut National de Recherche en Informatique et en
6  Automatique, Keio University).
7
8  All Rights Reserved.
9
10  Please see the full Copyright clause at
11  <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
13  Description: two identical rdf:ID's are allowed, as long as they
14               refer to different resources.
15  Author: Jeremy Carroll (jjc@hpl.hp.com)
16
17  $Id: test014.rdf,v 1.1 2002/03/08 12:21:41 dajobe Exp $
18-->
19
20<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
21         xmlns:eg="http://example.org/"
22         >
23
24 <rdf:Description xml:base="http://example.org/dir/file"
25                rdf:ID="frag" eg:value="v" />
26 <rdf:Description rdf:ID="frag" eg:value="v" />
27
28</rdf:RDF>
29