mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
substitute bounds (IDEA-123509)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
interface IDo {}
|
||||
interface IDoable<TDo> {}
|
||||
interface IDoableFilter<TDo, TDoable extends IDoable<TDo>> {}
|
||||
|
||||
<TDoable extends IDoable<IDo>> void foo(IDoableFilter<IDo, ? super TDoable> filter_) {
|
||||
IDoableFilter<IDo, ? super TDoable> filter = filter_;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user