summaryrefslogtreecommitdiff
path: root/tests/general/bug-49-.xsl
blob: a75704c76c36cf4856353c1666e63c18803fd6b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" ?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                 version="1.0">

<xsl:variable name="a">
   <xsl:variable name="b" select="'SUCCESS'"/>
   <xsl:value-of select="$b"/>
</xsl:variable>

<xsl:template match="/">
<xsl:value-of select="$a"/>
</xsl:template>

</xsl:stylesheet>