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