rust-clippy/tests/ui/crashes/needless_borrow_fp.rs

7 lines
95 B
Rust

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