mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
Fixes IDEA-200489 Replacing lambda with method reference discards annotation on Java 11 var lambda parameter GitOrigin-RevId: 78bf5f00389f8e1e8a866fbaa226cea2e31b749c
6 lines
179 B
Java
6 lines
179 B
Java
// "Replace lambda with method reference" "false"
|
|
import java.util.function.Consumer;
|
|
|
|
class Test {
|
|
Consumer<Integer> c = (@Nonnull Integer i) -> System<caret>.out.println(i);
|
|
} |