This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-05-03 05:27:36 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
300901b705
rust
/
tests
/
ui
/
parser
/
issue-105634.rs
9 lines
105 B
Rust
Raw
Normal View
History
Unescape
Escape
Little fixes
2022-12-16 13:11:08 +00:00
// check-pass
Allow .. to be parsed as let initializer .. and ..= are valid expressions, however when used in a let statement it is not parsed.
2022-12-14 13:40:03 +00:00
fn
main
(
)
{
let
_a
=
..
;
let
_b
=
..=
10
;
let
_c
=
&
..
;
let
_d
=
&
..=
10
;
}
Reference in New Issue
Copy Permalink