Files
kotlin/idea/testData/codeInsight/overrideImplement/implementSamAdapters/foo/Impl.kt.after

8 lines
212 B
Plaintext
Vendored

package foo
class Impl: B {
override fun foo(r: Runnable?) {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
}