Files
kotlin-fork/idea/testData/copyPaste/plainTextConversion/OverrideInterface.expected.kt
T
Simon Ogorodnik f8b7ce1011 Fix for KT-13695, KT-13159 J2K: Invalid conversion context setup for plain text pastes
Extending, Implementing, imports from paste target file previously not implemented
2016-10-27 20:02:26 +03:00

6 lines
111 B
Kotlin
Vendored

import test.JavaInterface
class KotlinChild : JavaInterface() {
override fun subject(s: String?) {
}
}