Files
Bas Leijdekkersandintellij-monorepo-bot 3944be5659 Java: quick-fix should not make code uncompilable (IDEA-290348)
for "Method parameter always has the same value" inspection

GitOrigin-RevId: 114ab7d07d50298101555f3203b5161deea17816
2023-05-12 00:51:56 +00:00

10 lines
102 B
Java

class LongValue {
void x() {
System.out.println(10000000000L);
}
void y() {
x();
}
}