1
Fork 0
rust/tests/ui/macros/genercs-in-path-with-prettry-hir.stdout
Jonathan Dönszelmann d50c0a5480
Add hir::Attribute
2024-12-15 19:18:46 +01:00

13 lines
239 B
Text

#[prelude_import]
use ::std::prelude::rust_2015::*;
#[macro_use]
extern crate std;
//@ compile-flags: -Zunpretty=hir
// issue#97006
macro_rules! m { ($attr_path: path) => { #[$attr_path] fn f() {} } }
#[inline]
fn f() { }
fn main() { }