blob: 8b8f47ee1a0c44edaf475bd4d6cd0c6cd732d822 [file] [log] [blame]
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;
}
}