Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
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
;