rust/tests/ui/suggestions/path-by-value.rs
2023-01-11 09:32:08 +00:00

7 lines
71 B
Rust

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