35459d2ca7
#KT-37841 Fixed
8 lines
117 B
Kotlin
Vendored
8 lines
117 B
Kotlin
Vendored
// "Add non-null asserted (!!) call" "true"
|
|
class Foo {
|
|
fun f() = 1
|
|
}
|
|
|
|
fun Foo?.test() {
|
|
val f = ::f<caret>
|
|
} |