mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 00:01:54 +07:00
fix method signature erased equality (IDEA-57391)
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
abstract class B<T> {
|
||||
abstract <S extends T> void foo(T x, S y);
|
||||
}
|
||||
|
||||
class A extends B<String> {
|
||||
void foo(String x, String y) {}
|
||||
}
|
||||
Reference in New Issue
Block a user