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