rust/src/test/ui/suggestions/path-by-value.rs
2018-10-10 17:30:10 -07:00

7 lines
71 B
Rust

use std::path::Path;
fn f(p: Path) { }
//~^ ERROR E0277
fn main() {}