Files
kotlin/idea/testData/codeInsight/overrideImplement/javaInterfaceMethod/foo/Impl.kt.after
2016-06-28 15:07:31 +03:00

8 lines
254 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>
}
}