Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
psi
/
EnumOldConstructorSyntax.kt
blob: 509025b5837aebf0aac7d2c79d0ec768fda90425 [
file
]
// COMPILATION_ERRORS
enum
class
My
(
x
:
Int
)
{
FIRST
:
My
(
13
)
val y
=
x
+
1
}