]> git.proxmox.com Git - rustc.git/blob - tests/ui/typeck/conversion-methods.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / typeck / conversion-methods.rs
1 use std::path::{Path, PathBuf};
2
3
4 fn main() {
5 let _tis_an_instants_play: String = "'Tis a fond Ambush—"; //~ ERROR mismatched types
6 let _just_to_make_bliss: PathBuf = Path::new("/ern/her/own/surprise");
7 //~^ ERROR mismatched types
8
9 let _but_should_the_play: String = 2; // Perhaps surprisingly, we suggest .to_string() here
10 //~^ ERROR mismatched types
11
12 let _prove_piercing_earnest: Vec<usize> = &[1, 2, 3]; //~ ERROR mismatched types
13 }