You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use std::io::prelude::*;use std::fs::File;fnmain(){println!("hello world!");letmut f = File::open("file-ÿ.rs").unwrap();letmut s = String::new();
f.read_to_string(&mut s);println!("{}",s);}
When invoking "rustc file-ÿ.rs", with the file stored on a Latin-1 encoded filesystem, rustc immediately panics:
The text was updated successfully, but these errors were encountered: