mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
6b59675449
It does not seem to be necessary
7 lines
95 B
Rust
7 lines
95 B
Rust
#[deny(clippy::all)]
|
|
#[derive(Debug)]
|
|
pub enum Error {
|
|
Type(&'static str),
|
|
}
|
|
|
|
fn main() {}
|