Should I open an issue for this? ``` class Foo { ...
# coroutines
u
Should I open an issue for this?
Copy code
class Foo {
    fun foo() = Thread {
        runBlocking {
            synchronized(this@Foo) { // java.lang.IllegalMonitorStateException
                delay(500)
            }
        }
    }.start()
}