]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / coherence / coherence-no-direct-lifetime-dispatch.rs
index 9717f1ed0510e5684740b1ad6746bd0b472dbdca..d466dcac1c48cdde09775f8fc4b5b386ef4064c5 100644 (file)
@@ -1,14 +1,9 @@
 // Test that you cannot *directly* dispatch on lifetime requirements
 
-// revisions: old re
-
-#![cfg_attr(re, feature(re_rebalance_coherence))]
-
 trait MyTrait { fn foo() {} }
 
 impl<T> MyTrait for T {}
 impl<T: 'static> MyTrait for T {}
-//[old]~^ ERROR E0119
-//[re]~^^ ERROR E0119
+//~^ ERROR E0119
 
 fn main() {}