Files
kotlin-fork/idea/testData/quickfix/addExclExclCall/functionReference.kt.after
T
2020-08-17 12:05:45 +03:00

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
}