]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-with_negative_coherence.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / feature-gates / feature-gate-with_negative_coherence.rs
CommitLineData
5099ac24
FG
1trait Foo { }
2
3impl<T: std::ops::DerefMut> Foo for T { }
4
5impl<T> Foo for &T { }
6//~^ ERROR conflicting implementations of trait `Foo` for type `&_` [E0119]
7
8fn main() { }