------- Comment #15 from rguenth at gcc dot gnu dot org 2006-05-03 10:00 ------- Btw, can someone java-capable reduce the testase
import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamWriter; public class StAXWriter { XMLStreamWriter writer; int indent = 0; public void writeEnd(boolean wasEmpty) { try { indent -= 2; for (int i = 0; i < indent; i++) writer.writeCharacters(" "); } catch (XMLStreamException xmlse) { } } }; to something that does not require the imports? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26447