Are you referring to this quote?
There are no mentions of this contracted syntax in the accepted SE-0296 and { throws in }
never worked as I'm aware. What does work is { throw MyError }
which implicitly infers a throws
closure type (analogously, { await 3 }
implicitly infers an async
closure type and this is explicitly stated in the proposal).