Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
issue-44127.rs
blob: a6e2840c7f8492981c1684e38be1e356efebd9c2 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
feature
(
decl_macro
)]
pub
struct
Foo
{
bar
:
u32
,
}
pub
macro pattern
(
$a
:
pat
)
{
Foo
{
bar
:
$a
}
}
fn
main
()
{
match
(
Foo
{
bar
:
3
})
{
pattern
!(
3
)
=>
println
!(
"Test OK"
),
_
=>
unreachable
!(),
}
}