mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-18 19:07:16 +07:00
10 lines
149 B
Java
10 lines
149 B
Java
class Test {
|
|
void m(String s) {}
|
|
<T> void n(T s) {}
|
|
{
|
|
String s = ``abc``;
|
|
m(`abc`);
|
|
n(`abc`);
|
|
String[] array = {``abc``};
|
|
}
|
|
} |