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