Files
2018-08-30 10:48:05 +01:00

8 lines
192 B
Java

class Test {
{
// OK: calls PrintStream.println(char[])
System.out.println(new char[] { 'H', 'i' });
// NOT OK: calls PrintStream.println(Object)
System.out.println(new byte[0]);
}
}