Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideExplicitFunction.kt.after
T
2014-10-06 17:53:02 +04:00

9 lines
163 B
Plaintext

trait A {
fun String.foo()
}
class B : A {
override fun String.foo() {
<selection><caret>throw UnsupportedOperationException()</selection>
}
}