Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
rustdoc-html
/
macro
/
auxiliary
/
external-macro-src.rs
blob: 79df5dc98ebab4133f1fc7d6279d58f70194e8b3 [
file
]
//@ compile-flags:--remap-path-prefix={{src-base}}=/does-not-exist
#![
doc
(
html_root_url
=
"https://example.com/"
)]
#[
macro_export
]
macro_rules
!
make_foo
{
()
=>
{
pub
struct
Foo
;
impl
Foo
{
pub
fn
new
()
->
Foo
{
Foo
}
}
}
}