DEBSOURCES
Skip Quicknav
sources / kotlin / 1.3.31%2Bds1-3 / idea / resources / intentionDescriptions / ImplementAbstractMemberIntention / after.kt.template
123456789
interface A { fun foo(): Int } class B : A { <spot>override fun foo(): Int { throw UnsupportedOperationException() }</spot> }