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

16 lines
299 B
Java

public class FooBar {
static void bar1() {}
public static void main(String[] args) throws Exception {
Runnable runnable = FooBar::bar1;
}
}
class FooBarBaz {
public static void main(String[] args) throws Exception {
Runnable runnable = FooBar::bar1;
}
}