summaryrefslogtreecommitdiff
path: root/tests/general/bug-40-.xsl
blob: 58a1504d485e14487be0fc1a3c090388e1a0e080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version='1.0'>

<xsl:variable name="foo" select="'SUCCESS'"/>

<xsl:template name="test">
<xsl:value-of select="$foo"/>
</xsl:template>

<xsl:template match="/">
<xsl:variable name="foo" select="'FAILURE'"/>
<xsl:call-template name="test"/>
</xsl:template>

</xsl:stylesheet>