mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
456 B
Rust
15 lines
456 B
Rust
#![crate_type = "lib"]
|
|
#![deny(invalid_doc_attributes)]
|
|
|
|
#![doc(test)]
|
|
//~^ ERROR `#[doc(test(...)]` takes a list of attributes
|
|
//~^^ WARN this was previously accepted by the compiler
|
|
#![doc(test = "hello")]
|
|
//~^ ERROR `#[doc(test(...)]` takes a list of attributes
|
|
//~^^ WARN this was previously accepted by the compiler
|
|
#![doc(test(a))]
|
|
//~^ ERROR unknown `doc(test)` attribute `a`
|
|
//~^^ WARN this was previously accepted by the compiler
|
|
|
|
pub fn foo() {}
|