Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
src
/
test
/
ui
/
doc-alias-crate-level.rs
blob: c7783aae5ea6267abbf35b5699480b3c8988491c [
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
;