github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-49-.xsl (about) 1 <?xml version="1.0" ?> 2 3 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 4 version="1.0"> 5 6 <xsl:variable name="a"> 7 <xsl:variable name="b" select="'SUCCESS'"/> 8 <xsl:value-of select="$b"/> 9 </xsl:variable> 10 11 <xsl:template match="/"> 12 <xsl:value-of select="$a"/> 13 </xsl:template> 14 15 </xsl:stylesheet>