summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/needless_borrow_fp.rs
blob: 4f61c76828db8a00d57382a6f744ea49d856d781 (plain)
1
2
3
4
5
6
7
#[deny(clippy::all)]
#[derive(Debug)]
pub enum Error {
    Type(&'static str),
}

fn main() {}