mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
intersection type validation fixed (IDEA-173900)
take type parameter bounds into account
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
|
||||
abstract class Bug {
|
||||
{
|
||||
D<?> _m = m();
|
||||
}
|
||||
|
||||
abstract <J extends C<? extends String>> J m();
|
||||
}
|
||||
|
||||
abstract class C<T extends String> { }
|
||||
abstract class D<T extends String> extends C<T> { }
|
||||
Reference in New Issue
Block a user