Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
staticMethod.kt
blob: 143ea4e8eed84bd788c4505393d428ba10f4db21 [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// MODULE: lib
// FILE: test/En.java
package
test
;
public
enum
En
{
ENTRY
;
public
static
String
foo
()
{
return
"OK"
;
}
}
// MODULE: main(lib)
// FILE: 1.kt
fun box
()
=
test
.
En
.
foo
()