mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-124352
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Test<V> {
|
||||
|
||||
void bar(Win window, I<V> consumer) {}
|
||||
void bar(Comp component, I<V> consumer) {}
|
||||
|
||||
private void foo(final Win component, final I<V> consumer) {
|
||||
bar(component, consumer);
|
||||
}
|
||||
}
|
||||
|
||||
interface I<K>{}
|
||||
class Comp {}
|
||||
class Win extends Comp {}
|
||||
Reference in New Issue
Block a user