1<?xml version='1.0' encoding='utf-8'?>
2
3<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4                xmlns:ns1="http://www.example.com/ns1"
5		exclude-result-prefixes="ns1"
6                version="1.0">
7<foo xmlns="http://www.example.com/ns1"/>
8
9<xsl:template match="/">
10  <xsl:element name="foo"/>
11</xsl:template>
12
13</xsl:stylesheet>
14