Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
use std::ffi::OsString;
fn main() {
let os_str = OsString::from("Hello Rust!");
assert_eq!(os_str, "Hello Rust!");
assert_eq!("Hello Rust!", os_str);
}