mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
10 lines
183 B
Kotlin
Vendored
10 lines
183 B
Kotlin
Vendored
// "Surround with null check" "true"
|
|
|
|
fun foo(p: String?) {
|
|
Util.f1(Util.f2(p<caret>.length), 0)
|
|
}
|
|
|
|
object Util {
|
|
fun f1(o: Any, p: Int): Any = o
|
|
fun f2(o: Any): Any = o
|
|
} |