Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardKotlincontinuation-passing style transformSingle-choice MCQ

A `suspend fun` is declared with a default parameter value. What does the compiler emit to support calls that omit the argument, and how does it interact with the trailing continuation parameter?

suspend fun fetch(url: String, retries: Int = 3): String { /* ... */ }