I have this - ```interface A { val na: Int } c...
# announcements
j
I have this -
Copy code
interface A {
    val na: Int
}
class B {
    val <T: A> T.nb: Int by lazy {
        <http://this.na|this.na> // !!! I want to reference T/A here, not B.
    }
}
I want to reference
T : A
but the compiler won't let me.
this
-s type is
B
. Is there another way?
Nm. Found this.
n
You can do a qualified this FYI
I think in this case it's either this@T or this@A
Not sure which
a
Should be this@A I believe