Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
rustdoc
/
doc-alias-crate-level.rs
blob: 7bbfb72900a5e9bcad701b43de62bebf5149b396 [
file
]
//@ compile-flags: -Zdeduplicate-diagnostics=no
#![
crate_type
=
"lib"
]
#![
doc
(
alias
=
"not working!"
)]
//~ ERROR
#[
doc
(
alias
=
"shouldn't work!"
)]
//~ ERROR
pub
struct
Foo
;