Files
kotlin-fork/j2k/testData/fileOrElement/nullability/MethodResultComparedWithNull2.kt
T
2015-05-12 11:49:37 +02:00

12 lines
191 B
Kotlin
Vendored

interface I {
public fun getString(): String?
}
class C {
fun foo(i: I) {
val result = i.getString()
if (result != null) {
print(result)
}
}
}