54285736d0
In these cases we have a `FirVarargArgumentsExpression` with a `FirNamedArgumentExpression` inside as its first argument, which, in turn, has a `FirArrayLiteral` argument. ^KT-62146 Fixed
15 lines
311 B
Kotlin
Vendored
15 lines
311 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// 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()
|