Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
issue-3928.rs
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
,
};
}