mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
26 lines
394 B
Rust
26 lines
394 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(clippy, clippy_pedantic)]
|
|
#![allow(unused_imports, dead_code, 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::*;
|
|
}
|
|
|
|
fn main() {}
|