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