From: Christian Poveda Date: Wed, 25 Sep 2019 16:12:46 +0000 (-0500) Subject: Add FIXME to file reading test X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=bdaa90ceb20a42405f9c7fee31133e70aab1bf7d;p=rust.git Add FIXME to file reading test --- diff --git a/tests/run-pass/file_read.rs b/tests/run-pass/file_read.rs index 93c986393b0..a60640d1b3c 100644 --- a/tests/run-pass/file_read.rs +++ b/tests/run-pass/file_read.rs @@ -5,6 +5,7 @@ use std::io::Read; fn main() { + // FIXME: create the file and delete it when `rm` is implemented. let mut file = File::open("./tests/hello.txt").unwrap(); let mut contents = String::new(); file.read_to_string(&mut contents).unwrap();