Files
kotlin-fork/compiler/testData/codegen/box/javaInterop/superCallOfPrintStackTrace.kt
T
2021-03-24 12:56:16 +03:00

17 lines
349 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// FULL_JDK
// FILE: PlaceholderException.java
public class PlaceholderException extends RuntimeException {}
// FILE: main.kt
import java.io.PrintWriter
class KotlinTestFailure : PlaceholderException() {
override fun printStackTrace(s: PrintWriter?) {
super.printStackTrace(s)
}
}
fun box(): String = "OK"