Minor, move tests on KT-39054 into a subdirectory
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
// WITH_STDLIB
|
||||
var result = "Fail"
|
||||
|
||||
object O {
|
||||
val z = 42
|
||||
init { result = "OK" }
|
||||
}
|
||||
|
||||
class A {
|
||||
val x by O::z
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
A()
|
||||
return result
|
||||
}
|
||||
Reference in New Issue
Block a user