// WITH_RUNTIME @Suppress("OPTIONAL_DECLARATION_USAGE_IN_NON_COMMON_SOURCE") @kotlin.jvm.JvmInline value class Id(val id: String) fun test(id: Id) { if (id.id != "OK") throw AssertionError() } fun test(id: Id?) { if (id != null) throw AssertionError() } fun box(): String { test(Id("OK")) test(null) return "OK" }