rust/tests/ui/suggestions/path-by-value.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
71 B
Rust
Raw Normal View History

2018-10-10 19:30:10 -05:00
use std::path::Path;
fn f(p: Path) { }
//~^ ERROR E0277
fn main() {}