Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/usageOnEnum.kt
T
2023-02-28 10:19:18 +00:00

9 lines
145 B
Kotlin
Vendored

// FIR_IDENTICAL
// LANGUAGE: +NoDeprecationOnDeprecatedEnumEntries
// ISSUE: KT-37975
@Deprecated("")
enum class Foo(val x: Int) {
A(42)
}