https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
s

serebit

05/02/2019, 9:05 PM
On the latest kotlin/native (1.3.31 multiplatform plugin), nearly all of the test files I have in my common source set are failing in the task
linkTestDebugExecutableLinuxX64
. I’ll post a stack trace once I get back to my computer.
s

serebit

05/03/2019, 12:08 AM
Seems somewhat related? It's not the same error but it's the same class:
e: Compilation failed: IrSimpleFunctionSymbolImpl for org.jetbrains.kotlin.backend.common.descriptors.WrappedSimpleFunctionDescriptor@7d194ace is already bound
It also happens to my sample module if I switch the module from JVM to linux.
j

Jonas Bark

05/03/2019, 6:54 AM
same for me for iOS (guess Kotlin Native in general)
o

olonho

05/03/2019, 8:49 AM
Please report an issue, and this area is seriously reworked in upcoming 1.3.40
h

Hauke Radtki

05/08/2019, 2:34 PM
Also seeing this. I couldn't isolate the code that caused this, but what DIDN'T help was removing all private/protected/internal/sealed modifiers from my codebase, so it must be something else. As a workaround I moved all my common tests to the jvm target.