mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
This patch mutes the following test categories:
* Tests with java dependencies (System class,
java stdlib, jvm-oriented annotations etc).
* Coroutines tests.
* Reflection tests.
* Tests with an inheritance from the standard
collections.
24 lines
484 B
Kotlin
Vendored
24 lines
484 B
Kotlin
Vendored
// IGNORE_BACKEND: NATIVE
|
|
// WITH_RUNTIME
|
|
// KOTLIN_CONFIGURATION_FLAGS: +JVM.INHERIT_MULTIFILE_PARTS
|
|
// FILE: 1.kt
|
|
|
|
@file:[JvmName("MultifileClass") JvmMultifileClass]
|
|
package a
|
|
|
|
inline fun foo(body: () -> String): String = bar(body())
|
|
|
|
public fun bar(x: String): String = x
|
|
|
|
inline fun <reified T> inlineOnly(x: Any?): Boolean = x is T
|
|
|
|
// FILE: 2.kt
|
|
|
|
import a.foo
|
|
import a.inlineOnly
|
|
|
|
fun box(): String {
|
|
if (!inlineOnly<String>("OK")) return "fail 1"
|
|
return foo { "OK" }
|
|
}
|