mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
method conflicts: prefer method with more specific return type (IDEA-67570)
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
interface A1
|
||||
{
|
||||
String foo();
|
||||
}
|
||||
|
||||
interface B1
|
||||
{
|
||||
Object foo();
|
||||
}
|
||||
|
||||
class C1<T extends B1 & A1> {
|
||||
void bar(T x) {
|
||||
String foo = x.foo();
|
||||
}
|
||||
}
|
||||
|
||||
class C2<T extends A1 & B1> {
|
||||
void bar(T x) {
|
||||
String foo = x.foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user