rust/tests/ui/issues/issue-57162.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
101 B
Rust
Raw Normal View History

// check-pass
2019-01-04 19:53:00 +00:00
trait Foo {}
impl Foo for dyn Send {}
impl<T: Sync + Sync> Foo for T {}
fn main() {}