Why does `runCatching` autocomplete to `kotlin.run...
# announcements
e
Why does
runCatching
autocomplete to
kotlin.runCatching
in the IDE? If I remove
kotlin.
it still works fine.
7
b
kotlin package is imported implicitly by the kompiler
c
I think he’s meaning why does autocompletion give us the fully-qualified
kotlin.runCatching { }
rather than just
runCatching { }
. Since
kotlin.
is imported implicitly, the IDE shouldn’t need to add that extra bit. It’s always annoyed me too
7
e
Yes, this 👆
a
Why
It's a bug: https://youtrack.jetbrains.com/issue/KT-31073. Please vote for it.
d
this bug exists for years