Sign in
android
/
platform
/
tools
/
idea
/
767536605379e492929a763f4a585cb4f499b9f6
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting
/
IDEA57311.java
blob: 9ed409cfc19f51d4e8f5babd2ab58c0ca20a1207 [
file
] [
log
] [
blame
]
class
A
<
T
>
{
A
<
A
<?
extends
T
>>
foo
(){
return
null
;
}
void
bar
(
A
<?>
x
){
baz
<
error descr
=
"'baz(A<A<? extends S>>)' in 'A' cannot be applied to '(A<A<capture<?>>>)'"
>(
x
.
foo
())</
error
>;
}
<
S
>
void
baz
(
A
<
A
<?
extends
S
>>
x
){}
}