mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
11 lines
178 B
Java
11 lines
178 B
Java
import java.util.Arrays;
|
|
|
|
// "Wrap using 'Arrays.toString()'" "true-preview"
|
|
public class Test {
|
|
void ba() {
|
|
fa(Arrays.toString(new int[10]));
|
|
}
|
|
|
|
void fa(String s){}
|
|
}
|