]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/needless_borrow_fp.rs
Auto merge of #3901 - rail-rain:issue_1670, 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() {}