mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-01 08:53:29 +00:00

Properly print cstr literals in `proc_macro::Literal::to_string` Previously we printed the contents of the string, rather than the actual string literal (e.g. `the c string` instead of `c"the c string"`). Fixes #112820 cc #105723