rust/tests/ui/async-await/expansion-in-attrs.rs

14 lines
173 B
Rust

//@ check-pass
//@ edition:2018
macro_rules! with_doc {
($doc: expr) => {
#[doc = $doc]
async fn f() {}
};
}
with_doc!(concat!(""));
fn main() {}