summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/crates/rustfix/tests/everything/E0178.rs
blob: 24226fe0e5088a6d603000b6d9442105bb60dae4 (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() {
}