Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
PreferExtensionsOnNullableReceiver.kt
blob: c8f5f2ca1da0d40c771323bac95fd306bcc3df8e [
file
]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
class
Foo
{
fun foo
()
{}
}
fun
Any
?.
foo
()
{}
fun test
(
f
:
Foo
?)
{
f
.
foo
()
}
/* GENERATED_FIR_TAGS: classDeclaration, funWithExtensionReceiver, functionDeclaration, nullableType */