rust/tests/rustdoc-ui/doctest/doc-test-attr.rs
2026-02-05 11:36:45 -08:00

11 lines
288 B
Rust

#![deny(invalid_doc_attributes)]
#![crate_type = "lib"]
#![doc(test)]
//~^ ERROR `#[doc(test(...)]` takes a list of attributes
#![doc(test = "hello")]
//~^ ERROR `#[doc(test(...)]` takes a list of attributes
#![doc(test(a))]
//~^ ERROR unknown `doc(test)` attribute `a`
pub fn foo() {}