mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 21:15:58 +07:00
19 lines
199 B
Java
19 lines
199 B
Java
interface I {
|
|
Object fun(Object o);
|
|
}
|
|
|
|
class Arrays {
|
|
static MyStream stream(int a) { }
|
|
}
|
|
|
|
interface MyStream {
|
|
MyStream map(I i);
|
|
}
|
|
|
|
class Test {
|
|
|
|
{
|
|
Arrays.stream().map(p -> "a");
|
|
}
|
|
}
|