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