Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
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 */