K2: fix reporting of NO_REFLECTION_IN_CLASS_PATH on implicit invoke

#KT-61054 Fixed
This commit is contained in:
Alexander Udalov
2023-08-08 12:50:25 +02:00
committed by Space Team
parent 87ab88957d
commit e87bccd5c7
3 changed files with 4 additions and 1 deletions
@@ -21,6 +21,7 @@ fun y01() = Foo::prop.<!NO_REFLECTION_IN_CLASS_PATH!>getter<!>
fun y02() = Foo::class.<!NO_REFLECTION_IN_CLASS_PATH!>members<!>
fun y03() = Foo::class.simpleName
fun y04() = Foo::class.<!UNRESOLVED_REFERENCE!>properties<!>
fun y05() = Foo::prop.<!NO_REFLECTION_IN_CLASS_PATH!>getter<!>(Foo(42))
fun <T : Any> kclass(k: KClass<*>, kt: KClass<T>) {
k.simpleName
@@ -16,6 +16,7 @@ public fun y01(): kotlin.reflect.KProperty1.Getter<Foo, kotlin.Any>
public fun y02(): kotlin.collections.Collection<kotlin.reflect.KCallable<*>>
public fun y03(): kotlin.String?
public fun y04(): [Error type: Return type for function cannot be resolved]
public fun y05(): kotlin.Any
public final class Foo {
public constructor Foo(/*0*/ prop: kotlin.Any)
@@ -25,3 +26,4 @@ public final class Foo {
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}