From: Georg Semmler Date: Sat, 19 Oct 2019 14:02:21 +0000 (+0200) Subject: Fix test paths X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=7e17ea37b72efd42153604a28977a8482ceef6f8;p=rust.git Fix test paths --- 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 index 850b6f85d0e..00000000000 --- a/src/test/ui/coherence/impl[t]-foreign-for-(local, t).rs +++ /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 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 index ff0b9d6d0da..00000000000 --- a/src/test/ui/coherence/impl[t]-foreign-for-(local, t).stderr +++ /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 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`.