6 lines
97 B
Rust
6 lines
97 B
Rust
|
use std::path::Path;
|
||
|
|
||
|
fn main() {
|
||
|
let Path::new(); //~ ERROR expected tuple struct/variant
|
||
|
}
|