That’s the function. Maybe the `crossinline` keywo...
# intellij
r
That’s the function. Maybe the
crossinline
keyword causes this issue? The code is definitely executed
Copy code
inline fun workerThread(crossinline block: () -> Unit) {
    workerExecutor.execute { block() }
}