mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
11 lines
247 B
Java
11 lines
247 B
Java
class Test {
|
|
{
|
|
Object o = "";
|
|
<warning descr="Operator '+' cannot be applied to 'java.lang.Object', 'java.lang.String'">o += ""</warning>;
|
|
System.out.println(o);
|
|
|
|
CharSequence c = "";
|
|
c += "";
|
|
System.out.println(c);
|
|
}
|
|
} |