cargo/crates/rustfix/tests/everything/E0178.fixed.rs

11 lines
99 B
Rust

#![allow(dead_code)]
trait Foo {}
struct Bar<'a> {
w: &'a (dyn Foo + Send),
}
fn main() {
}