blob: db74b1f025987818bbcc74aa682e1e8c8d9bee8c [file] [log] [blame] [edit]
//@ compile-flags: -Z unpretty=mir
use std::path::MAIN_SEPARATOR;
fn main() {
let mut foo : String = "hello".to_string();
foo.push(MAIN_SEPARATOR);
println!("{}", foo);
let x: () = 0; //~ ERROR: mismatched types
}