Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
enum
/
javaEnumWithProperty.kt
blob: 0030aa685b2d9842fc45f2589d962b29fb820c03 [
file
]
// FIR_IDENTICAL
// FILE: A.java
public
enum
A
{
ENTRY
(
"1"
),
ANOTHER
(
"2"
);
public
String
s
;
private
A
(
String
s
)
{
this
.
s
=
s
;
}
}
// FILE: test.kt
fun main
()
{
val c
=
A
.
ENTRY
c
.
s
A
.
ANOTHER
.
s
}