mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 13:55:00 +07:00
GitOrigin-RevId: 84e0fd64f0697df44cbaf6a7b8174fcd42ece504
11 lines
157 B
Java
11 lines
157 B
Java
// "Create method 'fooBar'" "true"
|
|
interface I {
|
|
String str(Container c);
|
|
}
|
|
class FooBar {
|
|
{
|
|
I i = Container::foo<caret>Bar;
|
|
}
|
|
}
|
|
class Container{}
|