rust/tests/run-pass/needless_borrow_fp.rs

11 lines
106 B
Rust
Raw Normal View History

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