Files
Tagir Valeev 7d8f8b64dc [java-refactoring] IDEA-215147 Detect common formats of string values when suggesting variable names
GitOrigin-RevId: 68731a721306d012e37c01f71be4d66744b2ca9e
2023-02-03 11:41:44 +00:00

6 lines
181 B
Java

// "<html> Change signature of A(<b>int</b>, <b>int</b>, <b>String</b>)</html>" "true-preview"
class A {
A(int i, int i1, String number) {
new A<caret>(1,1,"4");
}
}