blob: 47d3dd632bdc1ea6e036aa47f70e9b810a41b9c4 [file] [log] [blame]
//! regression test for https://github.com/rust-lang/rust/issues/49854
//@ 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);
}