mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
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;
|
|
}
|
|
}
|