2c294cba64
The problem is that FirAnonymousObject was ignored during getResolvedSuperTypeRefsForOutOfSessionDeclaration from SupertypeSupplier ^KT-58583 Fixed
20 lines
296 B
Kotlin
Vendored
20 lines
296 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
// FILE: DialogWrapper.kt
|
|
package pkg
|
|
|
|
open class DialogWrapper {
|
|
protected open class DialogWrapperAction
|
|
}
|
|
|
|
// FILE: Main.kt
|
|
import pkg.DialogWrapper
|
|
|
|
fun main() {
|
|
object: DialogWrapper() {
|
|
init {
|
|
object: DialogWrapperAction() {}
|
|
}
|
|
}
|
|
}
|