]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/issue-90101.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / typeck / issue-90101.rs
1 use std::path::{Path, PathBuf};
2
3 fn func(path: impl Into<PathBuf>, code: impl Into<String>) {}
4
5 fn main() {
6     func(Path::new("hello").to_path_buf().to_string_lossy(), "world")
7     //~^ ERROR [E0277]
8 }