github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-167.xsl (about)

     1  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     2                  version="1.0">
     3  
     4  <xsl:output method="text"/>
     5  
     6  <xsl:template match="/">
     7    <xsl:text>Hello </xsl:text>
     8    <xsl:if test="false()">
     9      <xsl:text>world</xsl:text>
    10    </xsl:if>
    11  </xsl:template>
    12  
    13  <x:ignore xmlns:x="x">
    14  <xsl:template match="/">
    15    <!--this better not be here!-->
    16  </xsl:template>
    17  </x:ignore>
    18  
    19  </xsl:stylesheet>
    20