rust/tests/ui/dyn-compatibility/impossible-predicates-multiple_supertrait_upcastable-check.rs

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

9 lines
121 B
Rust
Raw Normal View History

2022-12-29 09:59:49 +00:00
//@ check-pass
// issue: rust-lang/rust#106247
2022-12-29 09:59:49 +00:00
pub trait Trait {
fn method(&self) where Self: Sync;
}
fn main() {}