Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rustdoc
/
doc-alias-crate-level.rs
blob: 7bbfb72900a5e9bcad701b43de62bebf5149b396 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -Zdeduplicate-diagnostics=no
#![
crate_type
=
"lib"
]
#![
doc
(
alias
=
"not working!"
)]
//~ ERROR
#[
doc
(
alias
=
"shouldn't work!"
)]
//~ ERROR
pub
struct
Foo
;