2020-07-14 02:53:23 -05:00
|
|
|
// gate-test-if_let_guard
|
|
|
|
|
|
|
|
use std::ops::Range;
|
|
|
|
|
|
|
|
fn _if_let_guard() {
|
|
|
|
match () {
|
|
|
|
() if let 0 = 1 => {}
|
2020-12-17 09:56:59 -06:00
|
|
|
//~^ ERROR `if let` guards are experimental
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if (let 0 = 1) => {}
|
2022-08-20 13:40:08 -05:00
|
|
|
//~^ ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if (((let 0 = 1))) => {}
|
2022-08-20 13:40:08 -05:00
|
|
|
//~^ ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if true && let 0 = 1 => {}
|
2022-01-22 14:45:45 -06:00
|
|
|
//~^ ERROR `if let` guards are experimental
|
2022-08-20 13:40:08 -05:00
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if let 0 = 1 && true => {}
|
2022-01-22 14:45:45 -06:00
|
|
|
//~^ ERROR `if let` guards are experimental
|
2022-08-20 13:40:08 -05:00
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if (let 0 = 1) && true => {}
|
2022-08-20 13:40:08 -05:00
|
|
|
//~^ ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if true && (let 0 = 1) => {}
|
2022-08-20 13:40:08 -05:00
|
|
|
//~^ ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if (let 0 = 1) && (let 0 = 1) => {}
|
2022-08-20 13:40:08 -05:00
|
|
|
//~^ ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2022-07-08 05:25:50 -05:00
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if let 0 = 1 && let 1 = 2 && (let 2 = 3 && let 3 = 4 && let 4 = 5) => {}
|
2022-01-22 14:45:45 -06:00
|
|
|
//~^ ERROR `if let` guards are experimental
|
2022-08-20 13:40:08 -05:00
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
2022-07-08 05:25:50 -05:00
|
|
|
//~| ERROR expected expression, found `let` statement
|
2022-07-31 20:13:16 -05:00
|
|
|
//~| ERROR expected expression, found `let` statement
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
|
|
|
|
() if let Range { start: _, end: _ } = (true..true) && false => {}
|
2022-01-22 14:45:45 -06:00
|
|
|
//~^ ERROR `if let` guards are experimental
|
2022-08-20 13:40:08 -05:00
|
|
|
//~| ERROR `let` expressions in this position are unstable
|
2022-01-22 14:45:45 -06:00
|
|
|
|
2020-07-14 02:53:23 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn _macros() {
|
|
|
|
macro_rules! use_expr {
|
|
|
|
($e:expr) => {
|
|
|
|
match () {
|
|
|
|
() if $e => {}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
use_expr!((let 0 = 1 && 0 == 0));
|
2022-08-20 13:40:08 -05:00
|
|
|
//~^ ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
use_expr!((let 0 = 1));
|
2022-08-20 13:40:08 -05:00
|
|
|
//~^ ERROR `let` expressions in this position are unstable
|
|
|
|
//~| ERROR expected expression, found `let` statement
|
2020-07-14 02:53:23 -05:00
|
|
|
match () {
|
|
|
|
#[cfg(FALSE)]
|
|
|
|
() if let 0 = 1 => {}
|
2020-12-17 09:56:59 -06:00
|
|
|
//~^ ERROR `if let` guards are experimental
|
2020-07-14 02:53:23 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
use_expr!(let 0 = 1);
|
|
|
|
//~^ ERROR no rules expected the token `let`
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|