Anybody know why this does not work? ```class Foo...
# announcements
u
Anybody know why this does not work?
Copy code
class Foo {
        val access = ReentrantReadWriteLock()

        fun foo() = access.write {
            // fails with Back-end (JVM) Internal error: Couldn't inline method call 'write' into
            // but is not marked in the IDE
            return 
        }
    }