Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting8
/
IDEA67570.java
blob: 98e7c6b07cdb45c97572d081e00869336630f451 [
file
]
interface
A1
{
String
foo
();
}
interface
B1
{
Object
foo
();
}
class
C1
<
T
extends
B1
&
A1
>
{
void
bar
(
T x
)
{
String
foo
=
x
.
foo
();
}
}
class
C2
<
T
extends
A1
&
B1
>
{
void
bar
(
T x
)
{
String
foo
=
x
.
foo
();
}
}