blob: 9b9a9f7840352dbafce77af25bc30181c4cfaf0d [file] [log] [blame]
//@ 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!();
}