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