blob: 81ff478aabc636feb284f3d55c098a6c30b0724e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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
}
|