]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/path-by-value.rs
Rollup merge of #65276 - varkor:toolstate-no-ping, r=Mark-Simulacrum
[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() {}