Files
Bas Leijdekkers 774c6c6d42 Java: fix "Variable assigned to itself" inspection quick-fix operator assignment bug (IDEA-306674)
GitOrigin-RevId: 92f5ab3b782cd0a2e6af8f83ff80de64f000c3bf
2024-06-21 09:13:06 +00:00

7 lines
113 B
Java

class OperatorAssignment {
void x() {
String name = "Everest";
name = name<caret> += ".class";
}
}