mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
182 B
Kotlin
Vendored
10 lines
182 B
Kotlin
Vendored
// "Add safe '?.toString()' call" "true"
|
|
// ACTION: Add 'toString()' call
|
|
// ACTION: Add safe '?.toString()' call
|
|
|
|
fun foo() {
|
|
bar(null as Any?<caret>)
|
|
}
|
|
|
|
fun bar(a: String?) {
|
|
} |