blob: 62f1f6cd09ce4f9197fc27758e07f881f9a8653b (
plain)
1
2
3
4
5
|
// Ensure we validate `#![crate_name]` on print requests and reject macro calls inside of it.
// See also <https://github.com/rust-lang/rust/issues/122001>.
//@ compile-flags: --print=crate-name
#![crate_name = concat!("wrapped")] //~ ERROR attribute value must be a literal
|