Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
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
}