10 lines
152 B
Kotlin
Vendored
10 lines
152 B
Kotlin
Vendored
class MyClass(var p: String?)
|
|
|
|
fun bar(s: String?): Int {
|
|
return s?.length ?: -1
|
|
}
|
|
|
|
fun foo(m: MyClass): Int {
|
|
m.p = "xyz"
|
|
return bar(m.p)
|
|
} |