Searching for references to a.Face (by selecting the interface name and pressing Ctrl-Shift-G) is not finding the use in a.Main.
package a;
@FunctionalInterface
public interface Face {
void meth();
}
package a
class Main {
def m() {
return {->
} as Face
}
}
Searching for references to
a.Face(by selecting the interface name and pressing Ctrl-Shift-G) is not finding the use ina.Main.