Files
kotlin-fork/idea/resources/intentionDescriptions/CreateKotlinSubClassIntention/after.kt.template
T
2016-03-02 14:13:02 +03:00

9 lines
146 B
Plaintext

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