Files
Tagir Valeev 4f9e408a4b [java-intentions] Preview tests for ChangeMethodSignatureFromUsageFix; preserve modifiers in preview
GitOrigin-RevId: 851fbe2731eae7b5e67c1dfa5788e98fdfeb8f8c
2022-07-22 11:54:06 +00:00

7 lines
247 B
Java

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