]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/needless_borrow_fp.rs
Rollup merge of #5410 - dtolnay:trivially, r=flip1995
[rust.git] / tests / ui / crashes / needless_borrow_fp.rs
1 // run-pass
2
3 #[deny(clippy::all)]
4 #[derive(Debug)]
5 pub enum Error {
6     Type(&'static str),
7 }
8
9 fn main() {}