separate compiler and plugin tests
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class Outer() {
|
||||
class Inner() {
|
||||
val outer: Outer get() = this@Outer
|
||||
}
|
||||
|
||||
public val x : Inner = Inner()
|
||||
}
|
||||
|
||||
fun box() : String {
|
||||
val o = Outer()
|
||||
return if (o === o.x.outer) "OK" else "fail"
|
||||
}
|
||||
Reference in New Issue
Block a user