Files
openide/java/java-tests/testData/refactoring/introduceVariable/MethodRefNotInContextInferredNonExact.java
T

10 lines
145 B
Java

@FunctionalInterface
interface I<T> {
void foo(T t);
}
class Foo {
void test() {
<selection>String::toLowerCase</selection>;
}
}