Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
issue-4159.rs
blob: cac69a48a398d762e7c484ed255e4217348cd7f7 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
#![
feature
()]
macro_rules
!
m
{
()
=>
(
c
..
);
// { dg-error "token type .* cannot be parsed as range pattern bound" }
}
fn
main
()
{
match
[
1
,
1
,
2
]
{
[
c1
]
=>
{}
[
m
!()
]
=>
{}
}
}