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

7 lines
65 B
Plaintext

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