Files
kotlin/idea/testData/codeInsight/overrideImplement/javaParameters/foo/Impl.kt.after
2012-04-04 19:15:25 +04:00

9 lines
168 B
Plaintext

import foo.Intf
class Impl(): Intf {
public override fun fooBar(i : Int, s : Array<String?>?, foo : Any?) {
throw UnsupportedOperationException()
}
}