Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
rustdoc-ui
/
invalid-attribute.rs
blob: 2fc7be2cf341d5deca69b1ad3695ee38627fbca6 [
file
] [
log
] [
blame
]
// Testing the output when an invalid builtin attribute is passed as value
// to `doc(attribute = "...")`.
#![
feature
(
rustdoc_internals
)]
#[
doc
(
attribute
=
"foo df"
)]
//~ ERROR
mod
foo
{}
#[
doc
(
attribute
=
"fooyi"
)]
//~ ERROR
mod
foo2
{}