JVM_IR: bug fix in classFileContainsMethod

The old test sequence failed for toplevel functions because of file
class wrappers, so that the second branch was never invoked.
This commit is contained in:
Georgy Bronnikov
2020-11-30 18:53:31 +03:00
parent f50480d258
commit 4607eca987
11 changed files with 53 additions and 2 deletions
@@ -0,0 +1,10 @@
// WITH_RUNTIME
// IGNORE_BACKEND: JVM
fun box(): String {
val uia = uintArrayOf()
val uia2 = uintArrayOf()
// UIntArray is a multifile class, so we need to know where to search for extension method copyInto.
uia.copyInto(uia2)
return "OK"
}