]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/path-by-value.rs
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[rust.git] / tests / ui / suggestions / path-by-value.rs
1 use std::path::Path;
2
3 fn f(p: Path) { }
4 //~^ ERROR E0277
5
6 fn main() {}