mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 06:11:42 +07:00
make method static: add parameter when method was used in method reference (IDEA-93138)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Test4 {
|
||||
void test() {
|
||||
Foo2<Test4> f = Test4::yyy;
|
||||
}
|
||||
static void yyy(Test4 anObject) {}
|
||||
}
|
||||
interface Foo2<T> {
|
||||
void bar(T j);
|
||||
}
|
||||
Reference in New Issue
Block a user