Sign in
rust
/
rust
/
ef4cff2ea33e070b7fa7253fdb4a88e3f4086a15
/
.
/
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 `..`
}