Consider: ```rust fn main() { let a = r"abc\"; let b = br"abc\"; let c = cr"abc\"; } ``` [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2024&gist=0828f4be3233474e8276260b4881add8) The first let statement works but for the rest the highlighting treats them as escaped strings rather than being raw.