2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-01-06 02:08:45 +00:00
rust-clippy/tests/ui/doc/needless_doctest_main.rs
2023-06-14 12:53:36 +09:00

20 lines
329 B
Rust

#![warn(clippy::needless_doctest_main)]
//! issue 10491:
//! ```rust,no_test
//! use std::collections::HashMap;
//!
//! fn main() {
//! let mut m = HashMap::new();
//! m.insert(1u32, 2u32);
//! }
//! ```
/// some description here
/// ```rust,no_test
/// fn main() {
/// foo()
/// }
/// ```
fn foo() {}
fn main() {}