461d91a10e
Using `ownerLookupTag` might be wrong in case of private constuctors of inner classes: their owner is an Inner class, but expected dispach receiver is Outer
11 lines
160 B
Kotlin
Vendored
11 lines
160 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// SKIP_TXT
|
|
|
|
val w: Int = 2
|
|
|
|
class Outer {
|
|
private inner class Inner private constructor(x: Int) {
|
|
constructor() : this(w)
|
|
}
|
|
}
|