mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 00:44:37 +07:00
GitOrigin-RevId: e542751b8352847268bb6f98e83f5af33539e959
7 lines
274 B
Java
7 lines
274 B
Java
class Demo {
|
|
public static void main(String[] args) {
|
|
Runnable r = () -> <error descr="void is not a functional interface">() -> () -> {}</error>;
|
|
<error descr="Cannot resolve symbol 'Supplier'">Supplier</error><String> unresolved = String::new;
|
|
}
|
|
}
|