Blame tests/syntax-highlighting/file.rq

Packit a7d494
# Positive test: product of type promotion within the xsd:decimal type tree.
Packit a7d494
Packit a7d494
PREFIX t: <http://www.w3.org/2001/sw/DataAccess/tests/data/TypePromotion/tP-0#>
Packit a7d494
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Packit a7d494
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
Packit a7d494
ASK
Packit a7d494
 WHERE { t:double1 rdf:value ?l .
Packit a7d494
         t:float1 rdf:value ?r .
Packit a7d494
         FILTER ( datatype(?l + ?r) = xsd:double ) }