Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/usageOnEnum.kt
T
2022-01-12 19:11:28 +03:00

9 lines
145 B
Kotlin
Vendored

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