blob: ba93384644d5964ad35bfd45c774b25edeac22ec [file] [log] [blame]
#[attr = MacroUse {arguments: UseAll}]
extern crate std;
#[prelude_import]
use ::std::prelude::rust_2015::*;
//@ compile-flags: -Zunpretty=hir
//@ edition: 2015
// issue#97006
macro_rules! m { ($attr_path: path) => { #[$attr_path] fn f() {} } }
#[attr = Inline(Hint)]
fn f() { }
fn main() { }