```inline fun bar(fn: () -> Unit ) { fn() } c...
# announcements
s
Copy code
inline fun bar(fn: () -> Unit ) { 
fn()
}

class InlineSuspendExperiments : StringSpec({

    "test experimenting" {
        runBlocking {
            bar {
                delay(100)
            }
        }
    }
})
l
This is actually exactly my scenario, as I'm trying to fix something at #C18FWPKKL
The build timed out because of compilation tie
Appveyor built it, but in almost 4x the time
So that won't work
Perhaps shortening the amount inlined may help a lot