Files
2022-07-22 11:54:06 +00:00

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();
}
}