russhwolf
08/02/2019, 2:37 AMfun main() {
val label = "hello"
val lambda: suspend () -> String = { label }
}
Apparently the compiler chokes on a variable named label
being passed into a suspend lambda. The problem goes away if a different name than label
is used. I’d toss it in youtrack but it seems to already be fixed in the 1.3.50 eap.spierce7
08/02/2019, 4:06 AMsvyatoslav.scherbina
08/02/2019, 11:40 AMsvyatoslav.scherbina
08/02/2019, 11:41 AM