blob: 5e62d0eb010bc450f83df01efb99ea7a246bea21 [file] [log] [blame] [edit]
//@ check-pass
trait Foo {}
impl Foo for dyn Send {}
impl<T: Sync + Sync> Foo for T {}
fn main() {}