Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/PreferExtensionsOnNullableReceiver.kt
T

11 lines
101 B
Kotlin
Vendored

// FIR_IDENTICAL
class Foo {
fun foo() {}
}
fun Any?.foo() {}
fun test(f : Foo?) {
f.foo()
}