rust/tests/ui/crashes/needless_borrow_fp.rs

8 lines
95 B
Rust
Raw Normal View History

2018-07-30 11:33:44 +02:00
#[deny(clippy::all)]
#[derive(Debug)]
pub enum Error {
2018-12-09 23:26:16 +01:00
Type(&'static str),
}
fn main() {}