Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
deprecated
/
usageOnEnum.kt
blob: 43cb5cea32a435983e3e2db0425fe1de030daaf8 [
file
]
// FIR_IDENTICAL
// LANGUAGE: +NoDeprecationOnDeprecatedEnumEntries
// ISSUE: KT-37975
@Deprecated
(
""
)
enum
class
Foo
(
val x
:
Int
)
{
A
(
42
)
}