1635018fe7
#KT-11807 Fixed
22 lines
467 B
Plaintext
Vendored
22 lines
467 B
Plaintext
Vendored
interface Test {
|
|
public open fun test()
|
|
public open val testProp : Int
|
|
}
|
|
|
|
class SomeTest : Test {
|
|
val hello = 12
|
|
override fun test() {
|
|
<selection><caret>throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
|
|
override val testProp: Int
|
|
get() = throw UnsupportedOperationException()
|
|
|
|
/**
|
|
* test
|
|
*/
|
|
fun some() {
|
|
|
|
}
|
|
}
|