mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
10 lines
129 B
Java
10 lines
129 B
Java
// "Create method 'fooBar'" "true"
|
|
interface I {
|
|
}
|
|
|
|
class Test {
|
|
void test() {
|
|
Runnable runnable = I::foo<caret>Bar;
|
|
}
|
|
}
|