mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-260227 add test for ctrl+mouse documentation on a lambda parameter
GitOrigin-RevId: 65b32ec19f159956adc298eba0d02aa05d4c2c0d
This commit is contained in:
committed by
intellij-monorepo-bot
parent
15c38734d4
commit
98f2cd578a
@@ -0,0 +1,14 @@
|
||||
interface FunctionalInterface<T> {
|
||||
void apply(T t);
|
||||
}
|
||||
|
||||
interface MethodOwner<T> {
|
||||
void method(FunctionalInterface<T> fi);
|
||||
}
|
||||
|
||||
class JavaClass {
|
||||
|
||||
void usage(MethodOwner<String> mo) {
|
||||
mo.method(<caret>item -> System.out.println(item));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user