Files
kotlin-fork/compiler/testData/diagnostics/tests/testWithModifiedMockJdk/throwableConstructor.fir.kt
T
2021-06-20 22:07:11 +02:00

7 lines
103 B
Kotlin
Vendored

// !JDK_KIND: MODIFIED_MOCK_JDK
abstract class A : Throwable(1.0) {}
fun foo() {
Throwable(1.5)
}