Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
coherence
/
coherence-overlap-negate-use-feature-gate.rs
blob: a0dd881d1aaad7455fa266dd44f0a47149949c66 [
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
()
{}