Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
dyn-compatibility
/
impossible-predicates-multiple_supertrait_upcastable-check.rs
blob: c2b8ecc141d7dcf65ab359e711ce5ffb95545747 [
file
]
//@ check-pass
// issue: rust-lang/rust#106247
pub
trait
Trait
{
fn
method
(&
self
)
where
Self
:
Sync
;
}
fn
main
()
{}