mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
32 lines
572 B
Rust
32 lines
572 B
Rust
// edition:2018
|
|
|
|
#![feature(try_blocks)]
|
|
|
|
fn main() {}
|
|
|
|
fn f1() {
|
|
loop
|
|
let x = 0; //~ ERROR expected `{`, found keyword `let`
|
|
drop(0);
|
|
}
|
|
|
|
fn f2() {
|
|
while true
|
|
let x = 0; //~ ERROR expected `{`, found keyword `let`
|
|
}
|
|
|
|
fn f3() {
|
|
for x in 0..1
|
|
let x = 0; //~ ERROR expected `{`, found keyword `let`
|
|
}
|
|
|
|
fn f4() {
|
|
try //~ ERROR expected expression, found reserved keyword `try`
|
|
let x = 0;
|
|
}
|
|
|
|
fn f5() {
|
|
async
|
|
let x = 0; //~ ERROR expected one of `move`, `|`, or `||`, found keyword `let`
|
|
}
|