rust/tests/rustdoc-ui/lints/invalid-crate-level-lint.rs
2026-02-05 11:36:45 -08:00

14 lines
348 B
Rust

#![deny(invalid_doc_attributes)]
#![crate_type = "lib"]
#[doc(test(no_crate_inject))]
//~^ ERROR can only be applied at the crate level
pub mod bar {
#![doc(test(no_crate_inject))]
//~^ ERROR can only be applied at the crate level
#[doc(test(no_crate_inject))]
//~^ ERROR can only be applied at the crate level
fn foo() {}
}