https://kotlinlang.org logo
Title
p

paxi

01/11/2019, 2:30 AM
Hi, guys. I'm working on an android app, and upon decompiling Kotlin code I stumbled upon issue like this - https://twitter.com/chibatching/status/1046301000443736065 Is this a code smell that I'm doing something wrong in app (Kotlin) code, or just decompiler having its own issues? The bytecode on its own seems ok, no large bytecode files were generated. This happens on a simple
runBlocking { var a = 1; var b = 2; a + b; }
piece of code. I understand this is https://youtrack.jetbrains.com/issue/KT-28007, but must I include
-din=0
part?
k

karelpeeters

01/11/2019, 9:11 AM
Just the decompiler having issues.
g

gildor

01/13/2019, 1:45 AM
Yes, this is known issue of decompiler with suspend function https://youtrack.jetbrains.com/issue/KT-28007