mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
8 lines
136 B
Kotlin
Vendored
8 lines
136 B
Kotlin
Vendored
// "Wrap with '?.let { ... }' call" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(x: String?) {
|
|
bar(<caret>x)
|
|
}
|
|
|
|
fun bar(s: String) = s.hashCode() |