mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
12 lines
136 B
Rust
12 lines
136 B
Rust
#![feature(tool_lints)]
|
|
|
|
#[deny(clippy::all)]
|
|
|
|
#[derive(Debug)]
|
|
pub enum Error {
|
|
Type(
|
|
&'static str,
|
|
),
|
|
}
|
|
|
|
fn main() {}
|