rust/tests/ui/macros/genercs-in-path-with-prettry-hir.stdout
2026-02-12 17:43:58 +00:00

13 lines
263 B
Text

extern crate std;
#[attr = PreludeImport]
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() { }