mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
29 lines
439 B
Rust
29 lines
439 B
Rust
#![warn(clippy::all, clippy::pedantic)]
|
|
#![allow(unused_imports, dead_code, clippy::missing_docs_in_private_items)]
|
|
|
|
use std::cmp::Ordering::*;
|
|
|
|
enum Enum {
|
|
_Foo,
|
|
}
|
|
|
|
use self::Enum::*;
|
|
|
|
fn blarg() {
|
|
use self::Enum::*; // ok, just for a function
|
|
}
|
|
|
|
mod blurg {
|
|
pub use std::cmp::Ordering::*; // ok, re-export
|
|
}
|
|
|
|
mod tests {
|
|
use super::*;
|
|
}
|
|
|
|
#[allow(non_snake_case)]
|
|
mod CamelCaseName {}
|
|
|
|
use CamelCaseName::*;
|
|
|
|
fn main() {}
|