mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
Fixes IDEA-356746 Confusing warning when I inline array method parameter GitOrigin-RevId: 1964db1b4a09ec7eb1bcbbcd05fcb445862f06b4
9 lines
185 B
Plaintext
9 lines
185 B
Plaintext
class Test {
|
|
public static void main(String[] args) {
|
|
System.out.println(use());
|
|
}
|
|
|
|
public static String use() {
|
|
return Arrays.toString(new Object[]{"1", "2", "3"});
|
|
}
|
|
} |