11 lines
200 B
Kotlin
Vendored
11 lines
200 B
Kotlin
Vendored
package kotlin.testing
|
|
|
|
import testing.NewInterface
|
|
|
|
class New(s: NewInterface) : NewInterface() {
|
|
val test = s
|
|
|
|
fun testFun(param : NewInterface) : NewInterface {
|
|
return test;
|
|
}
|
|
} |