mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 84e0fd64f0697df44cbaf6a7b8174fcd42ece504
15 lines
207 B
Java
15 lines
207 B
Java
// "Create method 'fooBar'" "true"
|
|
interface I {
|
|
String str(Container c);
|
|
}
|
|
class FooBar {
|
|
{
|
|
I i = Container::fooBar;
|
|
}
|
|
}
|
|
class Container{
|
|
public String fooBar() {
|
|
return null;
|
|
}
|
|
}
|