Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
analysis
/
low-level-api-fir
/
testData
/
getOrBuildFir
/
annotations
/
annotationOnEnumClass.kt
blob: 26ee1f68a21f12bc6daa567166c66eec6c693c50 [
file
]
// LOOK_UP_FOR_ELEMENT_OF_TYPE: org.jetbrains.kotlin.psi.KtAnnotationEntry
<expr>
@Anno
</
expr
>
enum
class
MyClass
(
val i
:
Int
=
foo
())
{
ENTRY1
,
ENTRY2
(
42
);
fun boo
(
a
:
String
)
{
}
}
fun foo
()
=
42