mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-03 18:09:42 +00:00
11 lines
106 B
Rust
11 lines
106 B
Rust
|
#[deny(clippy)]
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub enum Error {
|
||
|
Type(
|
||
|
&'static str,
|
||
|
),
|
||
|
}
|
||
|
|
||
|
fn main() {}
|