35459d2ca7
#KT-37841 Fixed
8 lines
119 B
Plaintext
Vendored
8 lines
119 B
Plaintext
Vendored
// "Add non-null asserted (!!) call" "true"
|
|
class Foo {
|
|
fun f() = 1
|
|
}
|
|
|
|
fun test(foo: Foo?) {
|
|
val f = foo!!::f
|
|
} |