blob: d0b731bbd330e06de4740a85b390ff3ad2f3c604 [file]
// { dg-do compile }
// { dg-options "-fsyntax-only" }
#![feature(no_core)]
#![no_core]
#![feature(exclusive_range_pattern)]
fn Foo() {
let x = 1u32;
match x {
3..-1 => 4,
};
}