Files
kotlin-fork/compiler/testData/diagnostics/tests/testWithModifiedMockJdk/throwableConstructor.kt
T
2021-06-21 00:51:31 +02:00

7 lines
139 B
Kotlin
Vendored

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