10 lines
115 B
Kotlin
10 lines
115 B
Kotlin
// "Create class 'Foo'" "true"
|
|
|
|
open class A
|
|
|
|
fun test(): A = Foo(2, "2")
|
|
|
|
class Foo(i: Int, s: String) : A() {
|
|
|
|
}
|