[FIR] Use tower to resolve delegated constructors, set dispatch receiver
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
@`InnerAnnotation` @InnerAnnotation
|
||||
companion object : StaticClass(), InnerClass() {
|
||||
companion object : StaticClass(), <!UNRESOLVED_REFERENCE!>InnerClass<!>() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@ class TestSome<P> {
|
||||
}
|
||||
|
||||
class Test {
|
||||
companion object : InnerClass() {
|
||||
val a = object: InnerClass() {
|
||||
companion object : <!UNRESOLVED_REFERENCE!>InnerClass<!>() {
|
||||
val a = object: <!UNRESOLVED_REFERENCE!>InnerClass<!>() {
|
||||
}
|
||||
|
||||
fun more(): InnerClass {
|
||||
|
||||
@@ -5,8 +5,8 @@ class TestSome<P> {
|
||||
}
|
||||
|
||||
class Test {
|
||||
object Some : InnerClass() {
|
||||
val a = object: InnerClass() {
|
||||
object Some : <!UNRESOLVED_REFERENCE!>InnerClass<!>() {
|
||||
val a = object: <!UNRESOLVED_REFERENCE!>InnerClass<!>() {
|
||||
}
|
||||
|
||||
fun more(): InnerClass {
|
||||
|
||||
@@ -7,7 +7,7 @@ class Outer {
|
||||
|
||||
class Nested1 : OpenNested()
|
||||
class Nested2 : FinalNested()
|
||||
class Nested3 : OpenInner()
|
||||
class Nested3 : <!UNRESOLVED_REFERENCE!>OpenInner<!>()
|
||||
class Nested4 : FinalInner()
|
||||
|
||||
inner class Inner1 : OpenNested()
|
||||
|
||||
Reference in New Issue
Block a user