I'm checking out the metadata library. How can a t...
# announcements
m
I'm checking out the metadata library. How can a type be
suspend
? 😮
Copy code
/**
 * A container of flags applicable to Kotlin types.
 */
object Type {
    // …

    /**
     * Signifies that the corresponding type is `suspend`.
     */
    @JvmField
    val IS_SUSPEND = Flag(F.SUSPEND_TYPE.offset + 1, F.SUSPEND_TYPE.bitWidth, 1)
}