Files
kotlin-fork/idea/resources/intentionDescriptions/ImplementAbstractMemberAsConstructorParameterIntention/before.kt.template
T
2015-12-30 00:56:34 +03:00

7 lines
63 B
Plaintext

interface A {
<spot>val foo: Int</spot>
}
class B : A {
}