mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 14:12:44 +07:00
ed136d9dbf
GitOrigin-RevId: 4c838da8dbb068de751bfb71ef98448bc475bf90
11 lines
187 B
Java
11 lines
187 B
Java
import java.util.Arrays;
|
|
|
|
// "Wrap using 'Arrays.toString()'" "true-preview"
|
|
public class Test {
|
|
void ba() {
|
|
fa(Arrays.toString(new Object[] {1,2,3}));
|
|
}
|
|
|
|
void fa(String s){}
|
|
}
|