2025-08-20 14:02:50 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/55587
|
2018-11-14 12:41:39 -05:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2019-10-14 17:20:50 -07:00
|
|
|
let Path::new(); //~ ERROR expected tuple struct or tuple variant
|
2018-11-14 12:41:39 -05:00
|
|
|
}
|