mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
11 lines
270 B
Kotlin
Vendored
11 lines
270 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
@Deprecated("alas", level = DeprecationLevel.ERROR)
|
|
fun foo() {}
|
|
|
|
@Deprecated("alas", level = DeprecationLevel.ERROR)
|
|
class C
|
|
|
|
fun test(c: <!DEPRECATION_ERROR!>C<!>) {
|
|
<!DEPRECATION_ERROR!>foo<!>()
|
|
<!DEPRECATION_ERROR!>C<!>()
|
|
} |