Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
parser
/
invalid-variable-definition-55587.rs
blob: f2c7c0a8e6c34684bdc0e4aa2cecfdc7c0e157a5 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/55587
use
std
::
path
::
Path
;
fn
main
()
{
let
Path
::
new
();
//~ ERROR expected tuple struct or tuple variant
}