Sign in
android
/
platform
/
tools
/
idea
/
934b9431b0b827a132df794e307fe5a2b70de00b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
advHighlighting7
/
DiamondPos5.java
blob: 1f60451ae16d057fbbed5ef23281e3979189a77a [
file
] [
log
] [
blame
]
public
class
Pos05
{
static
class
Foo
<
X
>
{
Foo
(
X x
)
{}
}
void
m
(
Foo
<
Integer
>
fi
)
{}
void
test
()
{
m
(
new
Foo
<>(
1
));
}
}