1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3  version="1.0">
4
5<xsl:template match="/">
6  <xsl:value-of select="id('h�llo')"/>
7  <xsl:apply-templates/>
8</xsl:template>
9<xsl:template match="id('h�llo')">
10WORKS TOO
11</xsl:template>
12<xsl:template match="dest">
13</xsl:template>
14
15</xsl:stylesheet>
16