rust/tests/rustdoc-ui/lints/doc-attr.rs
2025-12-10 12:27:34 +01:00

8 lines
182 B
Rust

#![crate_type = "lib"]
#[doc(123)]
//~^ ERROR malformed `doc` attribute
#[doc("hello", "bar")]
//~^ ERROR malformed `doc` attribute
//~| ERROR malformed `doc` attribute
fn bar() {}