IDEA-124019

This commit is contained in:
Anna Kozlova
2014-04-29 18:54:56 +04:00
parent 291c4310e6
commit f58394cd59
7 changed files with 25 additions and 13 deletions
@@ -7,6 +7,6 @@ abstract class B {
}
void foo(Class<?> aClass) {
A a = <error descr="Inferred type '?' for type parameter 'T' is not within its bound; should extend 'A'">getA(aClass)</error>;
A a = <error descr="Inferred type 'capture<?>' for type parameter 'T' is not within its bound; should extend 'A'">getA(aClass)</error>;
}
}