mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 851fbe2731eae7b5e67c1dfa5788e98fdfeb8f8c
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();
|
|
}
|
|
} |