rust/tests/run-pass/needless_borrow_fp.rs

13 lines
136 B
Rust
Raw Normal View History

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