Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/variables/propertyNotNeeded.kt
T
2015-10-14 20:39:35 +03:00

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)
}