Klitos Kyriacou
09/29/2022, 2:41 PMrun { ... }
. However, run
is overloaded as both an extension and non-extension function. Since the context includes an implicit "this" receiver, Kotlin favours calling the extension version. How can I force it to run the non-extension version?Klitos Kyriacou
09/29/2022, 2:52 PMkotlin.run
instead of just run
.ephemient
09/29/2022, 2:52 PMRuckus
09/29/2022, 3:31 PM