Files
openide/java/java-tests/testData/refactoring/renameLocal/MethodNameUsedInMethodRefs.java
T
2021-12-03 20:25:34 +00:00

16 lines
303 B
Java

public class FooBar {
static void f<caret>oo() {}
public static void main(String[] args) throws Exception {
Runnable runnable = FooBar::foo;
}
}
class FooBarBaz {
public static void main(String[] args) throws Exception {
Runnable runnable = FooBar::foo;
}
}