[IR] update testdata: print class name for callable references without receivers
This commit is contained in:
committed by
teamcityserver
parent
b6e37c1f89
commit
e94528fe0d
+1
-1
@@ -39,6 +39,6 @@ fun testVarargsStar() {
|
||||
}
|
||||
|
||||
fun testCtorStar() {
|
||||
useKCallableStar(fn = ::<init>)
|
||||
useKCallableStar(fn = C::<init>)
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -15,10 +15,10 @@ class A<T : Any?> {
|
||||
}
|
||||
|
||||
val test1: KFunction1<A<String>, Unit>
|
||||
field = ::foo
|
||||
field = A::foo
|
||||
get
|
||||
|
||||
val test2: KProperty1<A<String>, Int>
|
||||
field = ::bar
|
||||
field = A::bar
|
||||
get
|
||||
|
||||
|
||||
Reference in New Issue
Block a user