mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Currently all tests in boxWithStdlib/ run with both runtime and reflection included; eventually they'll be merged into box/ using these directives
44 lines
801 B
Kotlin
Vendored
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"
|
|
}
|