blob: 531f899b45c5fc42bf72b64d63436dc0cc42624f [file] [log] [blame]
import androidx.annotation.Keep
import kotlinx.coroutines.*
@Keep
class Example {
public suspend fun thinkBeforeAnswering(): String {
delay(1000L)
return "42"
}
}