]> git.lizzy.rs Git - rust.git/commitdiff
Fix test paths
authorGeorg Semmler <georg_semmler_05@web.de>
Sat, 19 Oct 2019 14:02:21 +0000 (16:02 +0200)
committerGeorg Semmler <georg_semmler_05@web.de>
Sat, 19 Oct 2019 14:02:21 +0000 (16:02 +0200)
src/test/ui/coherence/impl[t]-foreign-for-(local, t).rs [deleted file]
src/test/ui/coherence/impl[t]-foreign-for-(local, t).stderr [deleted file]

diff --git a/src/test/ui/coherence/impl[t]-foreign-for-(local, t).rs b/src/test/ui/coherence/impl[t]-foreign-for-(local, t).rs
deleted file mode 100644 (file)
index 850b6f8..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#![feature(re_rebalance_coherence)]
-
-// compile-flags:--crate-name=test
-// aux-build:coherence_lib.rs
-
-extern crate coherence_lib as lib;
-use lib::*;
-use std::rc::Rc;
-
-struct Local;
-
-impl<T> Remote for (Local, T) {
-    //~^ ERROR only traits defined in the current crate
-    // | can be implemented for arbitrary types [E0117]
-}
-
-fn main() {}
diff --git a/src/test/ui/coherence/impl[t]-foreign-for-(local, t).stderr b/src/test/ui/coherence/impl[t]-foreign-for-(local, t).stderr
deleted file mode 100644 (file)
index ff0b9d6..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
-  --> $DIR/impl[t]-foreign-for-(local, t).rs:12:1
-   |
-LL | impl<T> Remote for (Local, T) {
-   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
-   |
-   = note: the impl does not reference only types defined in this crate
-   = note: define and implement a trait or new type instead
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0117`.