mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-28 03:24:11 +00:00
The syn crate has gained support for let_else syntax in version 1.0.76, see https://github.com/dtolnay/syn/pull/1057 . In the three instances that use let_else, we've sent code through an attr macro, which would create compile errors when there was no let_else support in syn. To avoid this, we ran `cargo +nightly update -p syn` for updating the syn crate.
For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.