Files
kotlin-fork/idea/resources/intentionDescriptions/ImplementAbstractMemberIntention/after.kt.template
T
2015-12-25 18:50:37 +03:00

9 lines
146 B
Plaintext

interface A {
fun foo(): Int
}
class B : A {
<spot>override fun foo(): Int {
throw UnsupportedOperationException()
}</spot>
}