]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/suggestions/issue-85347.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / suggestions / issue-85347.rs
index f08e38689d6af9e5300969bf74aebe6a919fe746..02b5fb61894e9fc60a7615532e8fcb272b2b0795 100644 (file)
@@ -1,9 +1,8 @@
-#![allow(incomplete_features)]
-#![feature(generic_associated_types)]
 use std::ops::Deref;
 trait Foo {
     type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
     //~^ ERROR this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
+    //~| ERROR associated type bindings are not allowed here
     //~| HELP add missing
 }