Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
PreferExtensionsOnNullableReceiver.kt
blob: 2010320b401ff0844436d287e620343360e04490 [
file
]
// FIR_IDENTICAL
class
Foo
{
fun foo
()
{}
}
fun
Any
?.
foo
()
{}
fun test
(
f
:
Foo
?)
{
f
.
foo
()
}