groostav
fun <T> threadLocal(initializer: () -> T): ReadWriteProperty<*, T> = TODO()
class Thingy { val x by threadLocal { ByteArray(20) } }