Sign in
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
rustdoc-html
/
without-redirect.rs
blob: f8a332a5dd7587457062a1b4f4a98b914710adc9 [
file
]
#![
crate_name
=
"foo"
]
//@ has foo/macro.bar.html
//@ has foo/macro.bar!.html
//@ !has foo/bar.m.html
#[
macro_export
]
macro_rules
!
bar
{
()
=>
{}
}
//@ has foo/struct.Bar.html
//@ !has foo/Bar.t.html
pub
struct
Bar
;