mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
trivial method ref: check if qualifier is of assignable type (IDEA-154422)
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
// "Replace with qualifier" "false"
|
||||
class Test {
|
||||
nterface A {
|
||||
void m();
|
||||
}
|
||||
|
||||
interface B extends A {}
|
||||
|
||||
void foo(B b) {}
|
||||
|
||||
void bar(A a){
|
||||
foo(a::<caret>m);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user