]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/needless_borrow_fp.rs
Move run-pass tests to UI tests
[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() {}