]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/conversion-methods.rs
Rollup merge of #100220 - scottmcm:fix-by-ref-sized, r=joshtriplett
[rust.git] / src / test / 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 }