9ff0e0b046
* `nativeTest` task now allows to provide compiler plugins that may be enabled during test compilation * test sets for JVM and K/N backends are equal KT-60800 describes all the issues with native tests that were solved in this commit. Co-authored-by: Dmitriy Dolovov <Dmitriy.Dolovov@jetbrains.com> Merge-request: KT-MR-11401 Merged-by: Maria Sokolova <maria.sokolova@jetbrains.com>
29 lines
675 B
Kotlin
Vendored
29 lines
675 B
Kotlin
Vendored
import kotlinx.atomicfu.*
|
|
import kotlin.test.*
|
|
|
|
class ParameterizedInlineFunExtensionTest {
|
|
|
|
private inline fun <S> AtomicRef<S>.foo(res1: S, res2: S, foo: (S) -> S): S {
|
|
val res = bar(res1, res2)
|
|
return res
|
|
}
|
|
|
|
private inline fun <S> AtomicRef<S>.bar(res1: S, res2: S): S {
|
|
return res2
|
|
}
|
|
|
|
private val tail = atomic("aaa")
|
|
|
|
fun testClose() {
|
|
assertEquals("bbb", tail.bar("aaa", "bbb"))
|
|
val res = tail.foo("bbb", "ccc") { s -> s }
|
|
assertEquals("ccc", res)
|
|
}
|
|
}
|
|
|
|
@Test
|
|
fun testParameterizedInlineFunExtensionTest() {
|
|
val testClass = ParameterizedInlineFunExtensionTest()
|
|
testClass.testClose()
|
|
}
|