Sign in
android
/
platform
/
tools
/
idea
/
814f829cd44c28c7045e08b15bd7ee08890cbd80
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting8
/
IDEA57310.java
blob: 41a80a8f30e032ff6c343ed1e46e816ec780f42b [
file
] [
log
] [
blame
]
class
A
<
T
>
{
Exception
[]
bar
(
A
<?
super
Exception
[]>
x
,
A
<?
super
Throwable
[]>
y
){
return
this
.
foo
(
x
,
y
);
}
<
T
>
T foo
(
A
<?
super
T
>
x
,
A
<?
super
T
>
y
){
return
null
;
}
}