]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/coherence/coherence-cross-crate-conflict.rs
Rollup merge of #85766 - workingjubilee:file-options, r=yaahc
[rust.git] / src / test / ui / coherence / coherence-cross-crate-conflict.rs
index 648e290a4b888fa3b30dea17a43e74246abd2462..588630957c94a323b5f98f45a0b64543685792ff 100644 (file)
@@ -6,9 +6,7 @@
 extern crate trait_impl_conflict;
 use trait_impl_conflict::Foo;
 
-impl<A> Foo for A {
-    //~^ ERROR E0119
-    //~| ERROR E0210
+impl<A> Foo for A { //~ ERROR E0210
 }
 
 fn main() {