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