c7435ba760
We are going to deprecate `WITH_RUNTIME` directive. The main reason behind this change is that `WITH_STDLIB` directive better describes its meaning, specifically it will add kotlin stdlib to test's classpath.
25 lines
779 B
Kotlin
Vendored
25 lines
779 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
@Suppress("OPTIONAL_DECLARATION_USAGE_IN_NON_COMMON_SOURCE")
|
|
@kotlin.jvm.JvmInline
|
|
value class InlineNotNullPrimitive(val x: Int)
|
|
@Suppress("OPTIONAL_DECLARATION_USAGE_IN_NON_COMMON_SOURCE")
|
|
@kotlin.jvm.JvmInline
|
|
value class InlineNotNullReference(val y: String)
|
|
|
|
fun <T> testNotNullPrimitive(a: Any, b: T, c: InlineNotNullPrimitive, d: InlineNotNullPrimitive?) {}
|
|
fun <T> testNotNullReference(a: Any, b: T, c: InlineNotNullReference, d: InlineNotNullReference?) {}
|
|
|
|
fun test(a: InlineNotNullPrimitive, b: InlineNotNullReference) {
|
|
testNotNullPrimitive(a, a, a, a) // 3 box
|
|
testNotNullReference(b, b, b, b) // 2 box
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = InlineNotNullPrimitive(10)
|
|
val b = InlineNotNullReference("some")
|
|
|
|
test(a, b)
|
|
|
|
return "OK"
|
|
} |