gcc/libjava/testsuite/libjava.lang/utf8concat.java
Anthony Green d3cc3f10da Add Proxy support.
From-SVN: r57635
2002-09-30 05:19:09 +00:00

12 lines
245 B
Java

public class utf8concat
{
private static String s;
public static void main (String[] args)
{
// This causes a crash at runtime because the compiler is
// producing an invalid UTF-8 string literal.
s = "abc" + (char)183;
}
}