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