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.
34 lines
682 B
Kotlin
Vendored
34 lines
682 B
Kotlin
Vendored
// LANGUAGE: +InlineClasses
|
|
// TARGET_BACKEND: JVM
|
|
// WITH_STDLIB
|
|
|
|
// FILE: WithInlineClass.java
|
|
|
|
import kotlin.UInt;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class WithInlineClass {
|
|
@Nullable
|
|
public static UInt UINT = null;
|
|
|
|
public static void acceptsUInt(@Nullable UInt u) {
|
|
UINT = u;
|
|
}
|
|
|
|
@Nullable
|
|
public static UInt provideUInt() {
|
|
return UINT;
|
|
}
|
|
}
|
|
|
|
// FILE: box.kt
|
|
|
|
fun box(): String {
|
|
WithInlineClass.acceptsUInt(1u)
|
|
var res = WithInlineClass.provideUInt()
|
|
if (res != 1u) return "FAIL 1 $res"
|
|
WithInlineClass.UINT = 2u
|
|
res = WithInlineClass.UINT
|
|
if (res != 2u) return "FAIL 2 $res"
|
|
return "OK"
|
|
} |