gregorbg
06/26/2019, 12:33 PM1.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:
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?christophsturm
06/26/2019, 12:50 PMchristophsturm
06/26/2019, 1:30 PMgregorbg
06/27/2019, 9:13 AMAlexey Belkov [JB]
06/27/2019, 10:46 AM