blob: b5a3f07dd4b85369b4a27de2c33d5b619800d363 [file] [log] [blame]
//@ 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);
}