Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt.after
T
Alexander.Podkhalyuzin b5b9f7ba98 Fixed broken testdata.
2012-05-23 15:58:12 +04:00

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