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

<xsl:template name="test">
<xsl:text>SUCCESS</xsl:text>
</xsl:template>

<xsl:template match="/">
<xsl:variable name="foo">
<xsl:call-template name="test"/>
</xsl:variable>
<xsl:if test="1">
<xsl:value-of select="$foo"/>
</xsl:if>
</xsl:template>

</xsl:stylesheet>