mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
25 lines
266 B
Java
25 lines
266 B
Java
interface I {
|
|
Object fun(Object o);
|
|
}
|
|
|
|
interface MyStream {
|
|
MyStream map(I i);
|
|
}
|
|
|
|
class StrType {
|
|
static MyStream of(int b) {}
|
|
}
|
|
|
|
|
|
class Test extends Base {
|
|
|
|
{
|
|
new Runnable() {
|
|
void run() {
|
|
Stream.of(1).map(p -> "b"));
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|