mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
8 lines
163 B
Java
8 lines
163 B
Java
// "<html> Change signature of A(<s>int</s>)</html>" "true-preview"
|
|
class A {
|
|
A() {}
|
|
A(int i, String s) {}
|
|
public void foo() {
|
|
new A();
|
|
}
|
|
} |