Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
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
()
}