]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-20644.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-20644.rs
index bde65229ec2866a4e2e39f13a0ea5ce7f810ba7b..1b90727fbc0a66f1a706130a91a43476a9773c8d 100644 (file)
@@ -1,4 +1,4 @@
-// build-pass (FIXME(62277): could be check-pass?)
+// build-pass
 #![allow(dead_code)]
 #![allow(unused_imports)]
 #![allow(stable_features)]
@@ -7,7 +7,6 @@
 // had to do with codegen ignoring binders.
 
 // pretty-expanded FIXME #23616
-// ignore-cloudabi no std::fs
 
 #![feature(os)]
 
@@ -20,9 +19,7 @@ use std::path::Path;
 
 pub fn parse_summary<R: Read>(_: R, _: &Path) {
      let path_from_root = Path::new("");
-     Path::new(&iter::repeat("../")
-               .take(path_from_root.components().count() - 1)
-               .collect::<String>());
+     Path::new(&"../".repeat(path_from_root.components().count() - 1));
  }
 
 fn foo() {