Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-44730.rs
blob: 0c2af7e9f2f6c22d53280f7896a1345becdb62aa [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//! dox
#![
deny
(
missing_docs
)]
macro_rules
!
doc
{
(
$e
:
expr
)
=>
(
#[
doc
=
$e
]
pub
struct
Foo
;
)
}
doc
!(
"a"
);
fn
main
()
{}