1<xsl:stylesheet version="1.0"
2    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3    xmlns:exslt="http://exslt.org/common"
4    exclude-result-prefixes="exslt">
5
6<xsl:template match="/">
7<out>;
8  <xsl:copy-of select="exslt:node-set('test')"/>;
9  <xsl:copy-of select="exslt:node-set(5)"/>;
10  <xsl:copy-of select="exslt:node-set(true())"/>;
11</out>
12</xsl:template>
13</xsl:stylesheet>
14