blob: 0493811b279a77634a9e6e4579c65cb52269732f [file] [log] [blame]
// check-pass
//! dox
#![deny(missing_docs)]
macro_rules! doc {
($e:expr) => (
#[doc = $e]
pub struct Foo;
)
}
doc!("a");
fn main() {}