Files
kotlin/idea/testData/codeInsight/overrideImplement/javaInterfaceMethod/foo/Impl.kt.after
olegkunov 96d7203370 KT-1378 Code formatting: spaces around ':'
Changed test data to match actual behavior of the "override methods" feature.
2012-03-01 21:18:37 +04:00

9 lines
134 B
Plaintext

import foo.Intf
class Impl(): Intf {
override fun getFooBar() : String? {
throw UnsupportedOperationException()
}
}