Minor, move tests on KT-39054 into a subdirectory
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
// WITH_STDLIB
|
||||
val String.foo: String
|
||||
get() = this
|
||||
|
||||
abstract class A {
|
||||
abstract val x: String
|
||||
|
||||
val y by x::foo
|
||||
}
|
||||
|
||||
var storage = "OK"
|
||||
|
||||
class B : A() {
|
||||
override var x: String
|
||||
get() = storage
|
||||
set(value) { storage = value }
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
val b = B()
|
||||
b.x = "fail"
|
||||
return b.y
|
||||
}
|
||||
Reference in New Issue
Block a user