14 lines
294 B
Kotlin
Vendored
14 lines
294 B
Kotlin
Vendored
// ISSUE: KT-62146
|
|
|
|
@Deprecated("This is deprecated", level = DeprecationLevel.WARNING)
|
|
fun deprecated() = 1
|
|
|
|
@Suppress("DEPRECATION")
|
|
fun main() = deprecated()
|
|
|
|
@Suppress(names = ["DEPRECATION"])
|
|
fun plain() = deprecated()
|
|
|
|
@Suppress(names = arrayOf("DEPRECATION"))
|
|
fun brain() = deprecated()
|