Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
redeclarations
/
kotlinEnumJavaEnumRedeclaration.kt
blob: 5fd936ab7ea157899611697fc201c2f9bd87fed1 [
file
]
// RUN_PIPELINE_TILL: FRONTEND
// FILE: test/A.kt
package
test
enum
class
A
{
FOO
,
BAR
}
// FILE: test/A.java
package
test
;
public
enum
A
{
FOO
,
BAR
}
/* GENERATED_FIR_TAGS: enumDeclaration, enumEntry */