Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
coherence
/
coherence-overlap-negate-use-feature-gate.rs
blob: a0ddbc36cbbb96ff5767a9d9ef9142b480bf16ee [
file
] [
log
] [
blame
]
//@ check-pass
#![
feature
(
with_negative_coherence
)]
use
std
::
ops
::
DerefMut
;
trait
Foo
{}
impl
<
T
:
DerefMut
>
Foo
for
T
{}
impl
<
U
>
Foo
for
&
U
{}
fn
main
()
{}