Sign in
android
/
platform
/
tools
/
idea
/
767536605379e492929a763f4a585cb4f499b9f6
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting8
/
BooleanInferenceFromIfCondition.java
blob: 44fbeef4267132b22b6db605bd30f1e281cdd135 [
file
] [
log
] [
blame
]
public
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
++);
}
}