3d28c4cdb2
#KT-2835 In Progress #KT-2225 In Progress #KT-338 In Progress
11 lines
151 B
Kotlin
11 lines
151 B
Kotlin
open class Base(x: String, y: Int)
|
|
|
|
fun test(x: Any, y: Int?) {
|
|
if (x !is String) return
|
|
if (y == null) return
|
|
|
|
class Local: Base(x, y) {
|
|
}
|
|
}
|
|
|