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