14 lines
173 B
Rust
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() {}
|