]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/issue-90101.rs
Merge commit '7c21f91b15b7604f818565646b686d90f99d1baf' into clippyup
[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 }