mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
10 lines
341 B
Java
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);
|
|
}
|
|
} |