Sign in
android
/
platform
/
tools
/
idea
/
814f829cd44c28c7045e08b15bd7ee08890cbd80
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting8
/
IDEA57339.java
blob: 01d694a65f15e697f56b3f8af9559216dd1a3991 [
file
] [
log
] [
blame
]
abstract
class
A
{
abstract
<
T
extends
Iterable
&
Cloneable
>
void
foo
();
}
abstract
class
B
extends
A
{
abstract
<
T
extends
Cloneable
&
Iterable
>
void
foo
();
}