mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
8 lines
132 B
Java
8 lines
132 B
Java
// "Surround with array initialization" "true-preview"
|
|
class A {
|
|
A(String[] s){}
|
|
|
|
void foo(String s){
|
|
new A(<caret>s);
|
|
}
|
|
} |