b06b3ab4c4
#KT-4002 Fixed
20 lines
322 B
Plaintext
20 lines
322 B
Plaintext
trait Test {
|
|
public open fun test()
|
|
protected open val testProp : Int
|
|
}
|
|
|
|
class SomeTest : Test {
|
|
val hello = 12
|
|
override fun test() {
|
|
<selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|
|
|
|
override val testProp: Int = 0
|
|
/**
|
|
* test
|
|
*/
|
|
fun some() {
|
|
|
|
}
|
|
}
|