rust/tests/run-pass/needless_borrow_fp.rs
2018-08-29 11:08:29 -07:00

13 lines
136 B
Rust

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