[klibs] Fixed a bug in the signature-to-descriptor searcher
#KT-51927 Fixed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
// TARGET_BACKEND: NATIVE
|
||||
// MODULE: inner
|
||||
// FILE: Foo.kt
|
||||
class Foo(parameter: String)
|
||||
|
||||
// MODULE: outer(inner)
|
||||
// FILE: FooFactory.kt
|
||||
fun Foo(): Foo = Foo("")
|
||||
|
||||
// MODULE: main(inner, outer)
|
||||
// FILE: box.kt
|
||||
fun box(): String {
|
||||
Foo()
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user