Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting8
/
BooleanInferenceFromIfCondition.java
blob: f0f12ebbedf60eb022d9ed259f2d4eb802d07471 [
file
]
class
Main
{
public
<
T
>
T getAttribute
()
{
return
null
;}
public
<
T
>
T getAttribute
(
T def
)
{
return
null
;}
{
if
(
getAttribute
())
{}
while
(
getAttribute
())
{}
do
{}
while
(
getAttribute
());
for
(
int
i
=
0
;
getAttribute
();
i
++);
}
}