Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
rustdoc
/
auxiliary
/
external-macro-src.rs
blob: ce20ca5c91e6b79ba5a9dfa6d3d2e209cd295b2c [
file
] [
log
] [
blame
]
// 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
}
}
}
}