Files
kotlin/idea/testData/codeInsight/overrideImplement/javaParameters/foo/Impl.kt.after
2012-01-18 12:16:40 +04:00

9 lines
158 B
Plaintext

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