about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-37665.rs
blob: c20782a7eb4b852a08bdc2b731bf290a571c2e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
// compile-flags: -Z unpretty=mir
// ignore-cloudabi no std::path

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
}