Sign in
rust
/
rust
/
98e8f99bc0401f9ff22dca2290b2bc2c33345a4b
/
.
/
tests
/
ui
/
parser
/
range-3.rs
blob: 2c917a24e908aa1e030356b86fb0d6ab83beee34 [
file
] [
log
] [
blame
]
// Test range syntax - syntax errors.
pub
fn
main
()
{
let
r
=
1.
.
2.
.
3
;
//~^ ERROR expected one of `.`, `;`, `?`, `else`, or an operator, found `..`
}