[FIR2IR] Provide reflection target to adapted function references
^KT-60259 Fixed Merge-request: KT-MR-11182 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
017784d24f
commit
ff174dbad9
+8
-4
@@ -31,8 +31,12 @@ fun withVarargOfInt(vararg xs: Int): String {
|
||||
}
|
||||
|
||||
fun testAdaptedCR() {
|
||||
useVararg(foos = [local fun withVarargOfInt(p0: Int) {
|
||||
withVarargOfInt(xs = [p0])
|
||||
}
|
||||
/*-> IFoo */])
|
||||
useVararg(foos = [{ // BLOCK
|
||||
local fun withVarargOfInt(p0: Int) {
|
||||
withVarargOfInt(xs = [p0])
|
||||
}
|
||||
|
||||
::withVarargOfInt
|
||||
} /*-> IFoo */])
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user