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

<xsl:output method="text"/>

<xsl:template match="/">
  <xsl:text>Hello </xsl:text>
  <xsl:if test="false()">
    <xsl:text>world</xsl:text>
  </xsl:if>
</xsl:template>

<x:ignore xmlns:x="x">
<xsl:template match="/">
  <!--this better not be here!-->
</xsl:template>
</x:ignore>

</xsl:stylesheet>