Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
falseUnnecessaryCall.kt
blob: 11757ef81fb69c98ebe24ba65ababa7b7682dacb [
file
]
// FIR_IDENTICAL
// See KT-10276
class
Bar
()
{
var
test
:
String
?
=
null
fun foo
()
{
if
(
test
!=
null
)
{
// No warning: test is a mutable property
test
?.
hashCode
()
}
}
}