@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix test: <http://www.daml.org/2003/06/ruletests/test-ont#> .
@prefix : <#> .

<> a test:Test;
   owl:versionInfo "$Id: bnodes-1.n3,v 1.2 2003/08/26 14:21:10 mdean Exp $";
   rdfs:comment "base case using named individuals".

:namedIndividual :prop1 "1".

{ ?x :prop1 ?v }
=>
{ ?x :prop2 ?v }.

{ :namedIndividual :prop1 "1";
                   :prop2 "1" }
=>
{ <> test:successful "true" }
.
