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

8 lines
255 B
Plaintext
Vendored

import foo.Intf
class Impl(): Intf {
override fun getFooBar(): String? {
<selection><caret>throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
}