Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/incompleteHighlighting/FunctionInterface.java
Tagir Valeev 36e1bb72de [java-incomplete-model] Basic support of unresolved functional interfaces
GitOrigin-RevId: b1a79f1a77911485011b011e09105fdadc887e58
2024-06-07 16:43:22 +00:00

10 lines
341 B
Java

import <info descr="Not resolved until the project is fully loaded">com</info>.<info descr="Not resolved until the project is fully loaded">example</info>.*;
class X {
void test(<info descr="Not resolved until the project is fully loaded">MyFunction</info> fn) {}
void use() {
test(() -> {});
test(System.out::println);
}
}