about summary refs log tree commit diff
path: root/tests/ui/dyn-compatibility/impossible-predicates-multiple_supertrait_upcastable-check.rs
blob: c2b8ecc141d7dcf65ab359e711ce5ffb95545747 (plain)
1
2
3
4
5
6
7
8
//@ check-pass
// issue: rust-lang/rust#106247

pub trait Trait {
    fn method(&self) where Self: Sync;
}

fn main() {}