]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/needless_borrow_fp.rs
Merge remote-tracking branch 'origin/beta_backport' into HEAD
[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() {}