Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt.after
T
2012-04-04 19:15:25 +04:00

20 lines
308 B
Plaintext

trait Test {
public open fun test()
protected open val testProp : Int
}
class SomeTest : Test {
val hello = 12
public override fun test() {
throw UnsupportedOperationException()
}
protected override val testProp : Int = 0
/**
* test
*/
fun some() {
}
}