summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/crates/rustfix/tests/everything/E0178.fixed.rs
blob: 07e611774bbd47dcbace37a4fce4f3794ca4c0c6 (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]

trait Foo {}

struct Bar<'a> {
    w: &'a (dyn Foo + Send),
}

fn main() {
}