blob: c7f3c2c5403d1333edf2707fee78501125617fff (
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 malformed `crate_name` attribute input
 
  |