Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
simplifyComparison
/
notNull.kt
blob: 0235688ec2310312290c7bb10db54fcc3d88ae9f [
file
] [
log
] [
blame
]
// "Simplify comparison" "true"
fun foo
(
x
:
Int
)
{
if
(<
caret
>
x
!=
null
)
{
bar
()
}
}
fun bar
()
{}