Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting8
/
IDEA57275.java
blob: 934d107483066a76c8a194a9ace86354c03aaee5 [
file
]
abstract
class
A
{
abstract
<
S
,
T
extends
Iterable
<
S
>>
void
foo
();
{
foo
();
}
}
class
X
{
<
T
extends
Enum
<
T
>>
void
foo
(){
foo
();
}
}