mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
25 lines
285 B
Java
25 lines
285 B
Java
interface I {
|
|
Object fun(Object o);
|
|
}
|
|
|
|
interface MyStream {
|
|
MyStream map(I i);
|
|
}
|
|
|
|
class Test {
|
|
|
|
class StrType {
|
|
static MyStream of(int b) {}
|
|
}
|
|
|
|
{
|
|
StrType Stream = null;
|
|
new Runnable() {
|
|
void run() {
|
|
Stream.of(1).map(p -> "b"));
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|