blob: 519a02e57230d385cd6602d79a35ff29ecce846e [file] [log] [blame]
class Dup {
fun Dup() : Unit {
this<error>@Dup</error>
}
}
class A() {
fun foo() : Unit {
<warning>this@A</warning>
this<error>@a</error>
<warning>this</warning>
}
val x = this@A.foo()
val y = this.foo()
val z = foo()
}
fun foo1() : Unit {
<error>this</error>
this<error>@a</error>
}