This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
15c4ccef03
rust
/
tests
/
ui
/
parser
/
issues
/
issue-105634.rs
9 lines
106 B
Rust
Raw
Normal View
History
Unescape
Escape
[AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives
2024-02-16 20:02:50 +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 19:10:03 +05:30
fn
main
(
)
{
let
_a
=
..
;
let
_b
=
..=
10
;
let
_c
=
&
..
;
let
_d
=
&
..=
10
;
}
Copy permalink