rust/tests/ui/macros/genercs-in-path-with-prettry-hir.stdout
2025-06-17 23:22:51 +02:00

15 lines
270 B
Plaintext

#[prelude_import]
use ::std::prelude::rust_2015::*;
#[macro_use]
extern crate std;
//@ 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() { }