mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
return type equivalence: compare supers with current method (IDEA-147335)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
abstract class Child implements Human {}
|
||||
interface Human extends Mother, Father {
|
||||
Human me();
|
||||
}
|
||||
|
||||
interface Father {
|
||||
Father me();
|
||||
}
|
||||
|
||||
interface Mother {
|
||||
Mother me();
|
||||
}
|
||||
Reference in New Issue
Block a user