tests: Update external tests (1.1.2-dev-393)
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
abstract class Your {
|
||||
abstract val your: String
|
||||
|
||||
fun foo() = your
|
||||
}
|
||||
|
||||
class My {
|
||||
val my: String = "O"
|
||||
get() = object : Your() {
|
||||
override val your = field
|
||||
}.foo() + "K"
|
||||
}
|
||||
|
||||
fun box() = My().my
|
||||
Reference in New Issue
Block a user