mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inplace introduce: invalid identifiers
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
public class Derr {
|
||||
|
||||
public static void main(String[] args) {
|
||||
String value;
|
||||
|
||||
value = "1";
|
||||
value = "1";
|
||||
value = "<caret>1";
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
public class Derr {
|
||||
|
||||
public static final String STRING = "1";
|
||||
|
||||
public static void main(String[] args) {
|
||||
String value;
|
||||
|
||||
value = STRING;
|
||||
value = STRING;
|
||||
value = STRING;
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
public class Derr {
|
||||
|
||||
public static void main(String[] args) {
|
||||
long value;
|
||||
|
||||
value = new Long(1);
|
||||
value = new L<caret>ong(1);
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
public class Derr {
|
||||
|
||||
public static void main(String[] args, Long aLong) {
|
||||
long value;
|
||||
|
||||
value = aLong;
|
||||
value = aLong;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user