rust-clippy/tests/run-pass/needless_borrow_fp.rs

13 lines
136 B
Rust
Raw Normal View History

2018-07-30 09:33:44 +00:00
#![feature(tool_lints)]
#[deny(clippy::all)]
#[derive(Debug)]
pub enum Error {
Type(
&'static str,
),
}
fn main() {}