Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
suggestions
/
let-binding-suggest-issue-133713.rs
blob: ae218237a8d5c49bce5bcb7980873dbec53f7c69 [
file
] [
log
] [
blame
]
//@ run-rustfix
#![
allow
(
dead_code
)]
fn
demo1
()
{
let
_last
=
u64
=
0
;
//~ ERROR expected value, found builtin type `u64`
}
fn
demo2
()
{
let
_val
=
u64
;
//~ ERROR expected value, found builtin type `u64`
}
fn
main
()
{}