Vadim Mishenev

Results 86 comments of Vadim Mishenev

One more case: ```kt import kotlin.coroutines.* class C fun C.resume() = 0 /** * [Continuation.resume] // is unresolved */ fun usage() = 0 ``` but (replaced star import ) ```kt...

It is blocked by https://youtrack.jetbrains.com/issue/KT-69047/Analysis-API-Unresolved-KDoc-reference-to-extensions-with-the-same-name

One more case: `@param` for an internal constructor ```kt /** * @param p text */ class A internal constructor(p: Int) {} ```

You can track the issue [KT-71784](https://youtrack.jetbrains.com/issue/KT-71784/DGP-v2-dokkaGenerateModuleHtml-for-coroutines-core-fails-with-Illegal-use-of-flexible-type-deserializer).

Is it still actual? Can you provide more code? What are `com.example.myproject.sdk.v1.User` and `com.example.myproject.sdk.v1.utils.UserCallback`? It would be nice if we have a small reproducer.

This issues was addressed in https://github.com/Kotlin/KEEP/issues/389

Blocked by https://youtrack.jetbrains.com/issue/KT-76607 (in progress)

It is reproducible for K1 if the example is changed a bit. ```kt // commonMain expect class Skiko() // nativeMain actual class Skiko actual constructor(){ fun isShowing(): Boolean { return...

`@ExtensionFunctionType` is an internal annotation used only by the compiler (see [KT-58801](https://youtrack.jetbrains.com/issue/KT-58801/Prohibit-using-ExtensionFunctionType-as-an-annotation-in-Kotlin-code)), so this issue can be considered lower priority.