Files
kotlin-fork/idea/testData/refactoring/rename/renameJavaInterface/after/RenameJavaClass.kt
T
2013-11-27 00:53:31 +04:00

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;
}
}