rust/tests/run-pass/needless_borrow_fp.rs
2018-04-08 11:13:46 +02:00

10 lines
106 B
Rust

#[deny(clippy)]
#[derive(Debug)]
pub enum Error {
Type(
&'static str,
),
}
fn main() {}