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

7 lines
174 B
Java

// "<html> Change signature of f(<s>int</s>, <s>String</s>)</html>" "true-preview"
class A {
void f(int i,String s) {}
public void foo() {
<caret>f();
}
}