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 { /* ... */ }