mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
create method from method ref: fis for type element qualifier (IDEA-124485)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// "Create Method 'fooBar'" "true"
|
||||
class FooBar {
|
||||
{
|
||||
Runnable r = Container<String>::fooBar;
|
||||
}
|
||||
}
|
||||
class Container<T>{
|
||||
public static void fooBar() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Create Method 'fooBar'" "true"
|
||||
class FooBar {
|
||||
{
|
||||
Runnable r = Container<String>::foo<caret>Bar;
|
||||
}
|
||||
}
|
||||
class Container<T>{}
|
||||
Reference in New Issue
Block a user