]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/path-by-value.rs
Merge commit 'cb7915b00c235e9b5861564f3be78dba330980ee' into clippyup
[rust.git] / src / test / ui / suggestions / path-by-value.rs
1 use std::path::Path;
2
3 fn f(p: Path) { }
4 //~^ ERROR E0277
5
6 fn main() {}