Files
kotlin/compiler/testData/codegen/boxWithJava/jvmStatic/enumCompanion.kt
Alexander Udalov daab3db062 Add WITH_RUNTIME and WITH_REFLECT directives to box tests
Currently all tests in boxWithStdlib/ run with both runtime and reflection
included; eventually they'll be merged into box/ using these directives
2016-03-03 16:11:21 +03:00

44 lines
801 B
Kotlin
Vendored

// WITH_RUNTIME
// FILE: Test.java
class Test {
public static String foo() {
return A.foo;
}
public static String constBar() {
return A.constBar;
}
public static String getBar() {
return A.getBar();
}
public static String baz() {
return A.baz();
}
}
// FILE: enumCompanionObject.kt
enum class A {
;
companion object {
@JvmField val foo: String = "OK"
const val constBar: String = "OK"
@JvmStatic val bar: String = "OK"
@JvmStatic fun baz() = foo
}
}
fun box(): String {
if (Test.foo() != "OK") return "Fail foo"
if (Test.constBar() != "OK") return "Fail bar"
if (Test.getBar() != "OK") return "Fail getBar"
if (Test.baz() != "OK") return "Fail baz"
return "OK"
}