CHENPANPAN95
Results
1
comments of
CHENPANPAN95
force("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0")最简单的方式, 因为 kotlinx:kotlinx-coroutines-core:1.4.0以后,都会有DebugProbesKt.bin,应该是这个问题 fun testClassFileContent() { val clz = Class.forName("kotlin.coroutines.jvm.internal.DebugProbesKt") val classFileResourcePath = clz.name.replace(".", "/") + ".class" val array = clz.classLoader.getResourceAsStream(classFileResourcePath).use { it.readBytes() } assertJava8Compliance(array) // we expect the integration...