rust/tests/rustdoc-ui/lints/doc-attr.rs
2026-02-05 11:44:34 -08:00

12 lines
167 B
Rust

#![crate_type = "lib"]
#![deny(invalid_doc_attributes)]
#[doc(123)]
//~^ ERROR
//~| WARN
#[doc("hello", "bar")]
//~^ ERROR
//~| ERROR
//~| WARN
//~| WARN
fn bar() {}