blob: 71f2559998fba368d31d8ecce878bd51649f9f87 [file] [log] [blame]
// Make sure that existing root attributes are still respected even when `-Zcrate-attr` is present.
//@ run-pass
//@ compile-flags: -Zcrate-attr=feature(rustc_attrs)
#![crate_name = "override"]
#[rustc_dummy]
fn main() {
assert_eq!(module_path!(), "r#override");
}