rust-clippy/tests/ui/crashes/needless_borrow_fp.rs

8 lines
95 B
Rust
Raw Normal View History

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