Use of path::Path incorrect in http://static.rust-lang.org/doc/master/std/rt/io/file/fn.open.html Instead of `let p = &Path("/some/file/path.txt");`, should be `let p = &Path::new("/some/file/path.txt");`