Files
openide/java/java-tests/testData/refactoring/renameInplace/MethodWithJavadocRef2.java
Bas Leijdekkers c40e983f98 Java: rename method correctly if the name conflicts with javadoc reference (IDEA-355643)
GitOrigin-RevId: c1ae53780e8ec3a56834dd32ecd9bc19cfd222fb
2024-09-12 18:27:21 +00:00

22 lines
329 B
Java

class Main {
public static void main(String[] args) {
}
interface Add {
static OptionalLong set(long a) {
return null;
}
interface Async {
/**
* @see #set(long)
*/
CompletableFuture<OptionalLong> add<caret>(long a);
static void x() {
set(1);
}
}
}
}