blob: 57184b9d0a97a578828d6329bdf6eef3a21ab5cf (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Ensure that we don't emit an E0270 for "`impl AsRef<Path>: AsRef<Path>` not satisfied".
fn foo(filename: impl AsRef<Path>) {
//~^ ERROR cannot find type `Path` in this scope
std::fs::write(filename, "hello").unwrap();
}
fn main() {
foo("/tmp/hello");
}
|