mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
4e0baddbbf
Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
20 lines
488 B
Rust
20 lines
488 B
Rust
fn main() {
|
|
match -1 {
|
|
0..=1 => (),
|
|
0..=(1) => (),
|
|
//~^ error: range pattern bounds cannot have parentheses
|
|
(-12)..=4 => (),
|
|
//~^ error: range pattern bounds cannot have parentheses
|
|
(0)..=(-4) => (),
|
|
//~^ error: range pattern bounds cannot have parentheses
|
|
//~| error: range pattern bounds cannot have parentheses
|
|
};
|
|
}
|
|
|
|
macro_rules! m {
|
|
($pat:pat) => {};
|
|
(($s:literal)..($e:literal)) => {};
|
|
}
|
|
|
|
m!((7)..(7));
|