Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt.after
T
2012-09-13 19:07:58 +04:00

20 lines
309 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() {
}
}