Ever since upgrading the Kotlin plugin to `1.3.40`...
# intellij
g
Ever since upgrading the Kotlin plugin to
1.3.40
, my IDE complains about
One of the tpe variables was implcitly inferred to Nothing. Please, specify type arguments explicitly to hide this warning
for the following (abridged) example:
Copy code
runBlocking { throw Exception('Nope.') }
When complying with the message, and changing to
runBlocking<Nothing> {}
the IDE suggests
Remove explicit type arguments
and the type parameter is "greyed out" as usual for redundant generics. Where should I post the bug? IDEA YouTrack? Kotlin GitHub?
c
youtrack in the kotlin category
g
Thank you!
a
Probably the same as https://youtrack.jetbrains.com/issue/KT-32089 (see also duplicate issues). We want to hotfix this in the next release.