26d3168224
#KT-4100 Fixed
11 lines
221 B
Kotlin
11 lines
221 B
Kotlin
package kotlin.testing
|
|
|
|
import testing.NewInterfaceName
|
|
|
|
class Some(s: NewInterfaceName) : NewInterfaceName() {
|
|
val test = s
|
|
|
|
fun testFun(param : NewInterfaceName) : NewInterfaceName {
|
|
return test;
|
|
}
|
|
} |