rustc/tests/ui/parser/attribute/attr-unquoted-ident.fixed
2024-06-21 09:39:33 +02:00

16 lines
480 B
Plaintext

//@ compile-flags: -Zdeduplicate-diagnostics=yes
//@ run-rustfix
fn main() {
#[cfg(key="foo")]
//~^ ERROR expected unsuffixed literal, found `foo`
//~| HELP surround the identifier with quotation marks to parse it as a string
println!();
#[cfg(key="bar")]
println!();
#[cfg(key="foo bar baz")]
//~^ ERROR expected unsuffixed literal, found `foo`
//~| HELP surround the identifier with quotation marks to parse it as a string
println!();
}