Files
kotlin/compiler/testData/codegen/boxInline/multifileClasses/inlineFromOptimizedMultifileClass.kt
Ilya Matveev a5e4e0284e Mute some box tests for native backend
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.
2017-03-10 19:59:37 +03:00

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" }
}