Skip to content

Commit bdaa90c

Browse files
committed
Add FIXME to file reading test
1 parent 01f6461 commit bdaa90c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/run-pass/file_read.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use std::fs::File;
55
use std::io::Read;
66

77
fn main() {
8+
// FIXME: create the file and delete it when `rm` is implemented.
89
let mut file = File::open("./tests/hello.txt").unwrap();
910
let mut contents = String::new();
1011
file.read_to_string(&mut contents).unwrap();

0 commit comments

Comments
 (0)