mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
introduce parameter (IDEA-68498 )
(cherry picked from commit 0250f290f3d031a5d3f95faee8c280d241382040)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class Test {
|
||||
void m(int... ps) {
|
||||
m("asd", ps);
|
||||
}
|
||||
|
||||
void m(final String anObject, int... ps) {
|
||||
System.out.println(anObject);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class Test {
|
||||
void m(int... ps) {
|
||||
System.out.println(<selection>"asd"</selection>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user