blob: 88d6ec40af84096d63e73a4f9da9101b47106bc7 [file] [log] [blame] [edit]
// Regression test for rust-lang/rust#114920
//
// Applying `#![test]` to the crate root used to ICE,
// when referring to the attribute with full path specifically.
#![core::prelude::v1::test]
//~^ ERROR inner macro attributes are unstable
//~| ERROR the `#[test]` attribute may only be used on a free function
fn main() {}