about summary refs log tree commit diff
path: root/tests/ui/issues/issue-37665.rs
blob: db74b1f025987818bbcc74aa682e1e8c8d9bee8c (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
}