Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedError.fir.kt
T

11 lines
198 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
@Deprecated("alas", level = DeprecationLevel.ERROR)
fun foo() {}
@Deprecated("alas", level = DeprecationLevel.ERROR)
class C
fun test(c: C) {
foo()
C()
}