mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
44 lines
931 B
Rust
44 lines
931 B
Rust
fn a() {
|
|
if let () = () 'a {}
|
|
//~^ ERROR labeled expression must be followed by `:`
|
|
//~| ERROR expected `{`, found `'a`
|
|
}
|
|
|
|
fn b() {
|
|
if true 'a {}
|
|
//~^ ERROR labeled expression must be followed by `:`
|
|
//~| ERROR expected `{`, found `'a`
|
|
}
|
|
|
|
fn c() {
|
|
loop 'a {}
|
|
//~^ ERROR labeled expression must be followed by `:`
|
|
//~| ERROR expected `{`, found `'a`
|
|
}
|
|
|
|
fn d() {
|
|
while true 'a {}
|
|
//~^ ERROR labeled expression must be followed by `:`
|
|
//~| ERROR expected `{`, found `'a`
|
|
}
|
|
|
|
fn e() {
|
|
while let () = () 'a {}
|
|
//~^ ERROR labeled expression must be followed by `:`
|
|
//~| ERROR expected `{`, found `'a`
|
|
}
|
|
|
|
fn f() {
|
|
for _ in 0..0 'a {}
|
|
//~^ ERROR labeled expression must be followed by `:`
|
|
//~| ERROR expected `{`, found `'a`
|
|
}
|
|
|
|
fn g() {
|
|
unsafe 'a {}
|
|
//~^ ERROR labeled expression must be followed by `:`
|
|
//~| ERROR expected `{`, found `'a`
|
|
}
|
|
|
|
fn main() {}
|