Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/result.kt
T
Roman Artemev 3b53c97c2c [JS IR] Fix test data 'kt -> ir -> klib -> ir -> js' aka prod mode
- fix order in dts tests
 - unmute fixed test in prod mode
 - mute filing expect-actual link test in prod mode
2021-09-13 13:44:46 +03:00

15 lines
253 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// IGNORE_BACKEND: ANDROID
// IGNORE_BACKEND: NATIVE
// ALLOW_KOTLIN_PACKAGE
// FILE: result.kt
package kotlin
inline class Result(val value: Any?)
// FILE: box.kt
fun box(): String {
return Result("OK").value as String
}