blob: 691ec66b6c12189f2827079c2425c9066c346048 [file]
// WITH_STDLIB
import kotlin.test.*
val x = 42
fun box(): String {
val p = ::x
assertEquals(42, p.get())
return "OK"
}