Fix test paths

This commit is contained in:
Georg Semmler 2019-10-19 16:02:21 +02:00
parent 77f0aaf0d0
commit 7e17ea37b7
No known key found for this signature in database
GPG key ID: A87BCEE5205CE489
2 changed files with 0 additions and 29 deletions

View file

@ -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() {}

View file

@ -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`.