mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
20 lines
423 B
Rust
20 lines
423 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(clippy, clippy_pedantic)]
|
|
#![allow(unused_imports, dead_code)]
|
|
|
|
use std::cmp::Ordering::*; //~ ERROR: don't use glob imports for enum variants
|
|
|
|
enum Enum {}
|
|
|
|
use self::Enum::*; //~ ERROR: don't use glob imports for enum variants
|
|
|
|
fn blarg() {
|
|
use self::Enum::*; // ok, just for a function
|
|
}
|
|
|
|
mod blurg {
|
|
pub use std::cmp::Ordering::*; // ok, re-export
|
|
}
|
|
|
|
fn main() {}
|