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