]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/needless_borrow_fp.rs
Auto merge of #6298 - JohnTitor:fix-example, r=llogiq
[rust.git] / tests / ui / crashes / needless_borrow_fp.rs
1 #[deny(clippy::all)]
2 #[derive(Debug)]
3 pub enum Error {
4     Type(&'static str),
5 }
6
7 fn main() {}