mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
12 lines
180 B
Rust
12 lines
180 B
Rust
//@ check-pass
|
|
|
|
#![crate_type = "lib"]
|
|
#![deny(invalid_doc_attributes)]
|
|
#![doc(test(no_crate_inject))]
|
|
|
|
mod my_mod {
|
|
#![doc(test(attr(deny(warnings))))]
|
|
|
|
pub fn foo() {}
|
|
}
|