Any chance we can get something like the second de...
# coroutines
o
Any chance we can get something like the second declaration in this snippet?
Copy code
//works today:
    val a: suspend () -> Unit = {
        
    }
    
    //proposed shorthand syntax
    val b = suspend {
        
    }