3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
11 lines
161 B
Kotlin
11 lines
161 B
Kotlin
trait I {
|
|
public fun getString(): String?
|
|
}
|
|
|
|
class C {
|
|
fun foo(i: I) {
|
|
if (i.getString() == null) {
|
|
println("null")
|
|
}
|
|
}
|
|
} |