inline fun isNullable() = null is T fun box(): String = if (isNullable()) "OK" else "Fail"