Will TSAN or the Swift compiler identify possible Swift async-await race conditions?

I haven't followed the swift forums very closely, so perhaps there is news buried deep somewhere mentioning this.

Will the swift compiler and/or TSAN at runtime in the future be able to identify possible race conditions associated with Swift async-await (excluding data races that are "erased" by async-await)? I suppose this could equate to proving a function is reentrant in some scenarios (from a compiler's perspective, though I'm not knowledgeable about compilers)? Consider, e.g. the scenario described in "Protect Mutable State with Swift Actors" around 9:15, where Dario talks about actor reentrancy, with the cache for the image URL

Will TSAN or the Swift compiler identify possible Swift async-await race conditions?
 
 
Q