]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/coherence/coherence-pair-covered-uncovered-1.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / coherence-pair-covered-uncovered-1.rs
index 91794b7999b1c3f35385e9e53e9ce50ff4633936..15868ca868610a4422da6739d5e77997daa63f2a 100644 (file)
@@ -2,9 +2,6 @@
 // list of type parameters, not the self type.
 
 // aux-build:coherence_lib.rs
-// revisions: old re
-
-#![cfg_attr(re, feature(re_rebalance_coherence))]
 
 
 extern crate coherence_lib as lib;
@@ -13,7 +10,6 @@ use lib::{Remote1, Pair};
 pub struct Local<T>(T);
 
 impl<T, U> Remote1<Pair<T, Local<U>>> for i32 { }
-//[old]~^ ERROR type parameter `T` must be used as the type parameter for some local type
-//[re]~^^ ERROR E0117
+//~^ ERROR E0117
 
 fn main() { }