Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/provideDelegate/jvmStaticInObject.kt
T
Ilya Matveev a5e4e0284e Mute some box tests for native backend
This patch mutes the following test categories:
   * Tests with java dependencies (System class,
     java stdlib, jvm-oriented annotations etc).
   * Coroutines tests.
   * Reflection tests.
   * Tests with an inheritance from the standard
     collections.
2017-03-10 19:59:37 +03:00

32 lines
756 B
Kotlin
Vendored

// WITH_RUNTIME
// IGNORE_BACKEND: JS, NATIVE
import kotlin.test.*
var log: String = ""
inline fun <T> runLogged(entry: String, action: () -> T): T {
log += entry
return action()
}
operator fun String.provideDelegate(host: Any?, p: Any): String =
runLogged("tdf($this);") { this }
operator fun String.getValue(receiver: Any?, p: Any): String =
runLogged("get($this);") { this }
object Test {
fun foo() {}
@JvmStatic val testO by runLogged("O;") { "O" }
@JvmStatic val testK by runLogged("K;") { "K" }
@JvmStatic val testOK = runLogged("OK;") { testO + testK }
}
fun box(): String {
assertEquals("", log)
Test.foo()
assertEquals("O;tdf(O);K;tdf(K);OK;get(O);get(K);", log)
return Test.testOK
}