Add more places where expressions can occur

This commit is contained in:
est31 2024-11-09 23:31:11 +01:00
parent 7312b41239
commit 935bf6995f
4 changed files with 835 additions and 398 deletions

View File

@ -1,4 +1,5 @@
//@ revisions: no_feature feature nothing //@ revisions: no_feature feature nothing
//@ edition: 2021
// Here we test that `lowering` behaves correctly wrt. `let $pats = $expr` expressions. // Here we test that `lowering` behaves correctly wrt. `let $pats = $expr` expressions.
// //
// We want to make sure that `let` is banned in situations other than: // We want to make sure that `let` is banned in situations other than:
@ -156,6 +157,32 @@ fn _check_try_binds_tighter() -> Result<(), ()> {
if let true = let true = true {} if let true = let true = true {}
//~^ ERROR expected expression, found `let` statement //~^ ERROR expected expression, found `let` statement
if return let 0 = 0 {}
//~^ ERROR expected expression, found `let` statement
loop { if break let 0 = 0 {} }
//~^ ERROR expected expression, found `let` statement
if (match let 0 = 0 { _ => { false } }) {}
//~^ ERROR expected expression, found `let` statement
if (let 0 = 0, false).1 {}
//~^ ERROR expected expression, found `let` statement
if (let 0 = 0,) {}
//~^ ERROR expected expression, found `let` statement
async fn foo() {
if (let 0 = 0).await {}
//~^ ERROR expected expression, found `let` statement
}
if (|| let 0 = 0) {}
//~^ ERROR expected expression, found `let` statement
if (let 0 = 0)() {}
//~^ ERROR expected expression, found `let` statement
} }
#[cfg(not(nothing))] #[cfg(not(nothing))]
@ -221,6 +248,32 @@ fn _check_try_binds_tighter() -> Result<(), ()> {
while let true = let true = true {} while let true = let true = true {}
//~^ ERROR expected expression, found `let` statement //~^ ERROR expected expression, found `let` statement
while return let 0 = 0 {}
//~^ ERROR expected expression, found `let` statement
'outer: loop { while break 'outer let 0 = 0 {} }
//~^ ERROR expected expression, found `let` statement
while (match let 0 = 0 { _ => { false } }) {}
//~^ ERROR expected expression, found `let` statement
while (let 0 = 0, false).1 {}
//~^ ERROR expected expression, found `let` statement
while (let 0 = 0,) {}
//~^ ERROR expected expression, found `let` statement
async fn foo() {
while (let 0 = 0).await {}
//~^ ERROR expected expression, found `let` statement
}
while (|| let 0 = 0) {}
//~^ ERROR expected expression, found `let` statement
while (let 0 = 0)() {}
//~^ ERROR expected expression, found `let` statement
} }
#[cfg(not(nothing))] #[cfg(not(nothing))]