mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
12 lines
245 B
Java
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;
|
|
}
|
|
}
|