Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
macro-tt-matchers.rs
blob: 2ee41b0880e184e0486df11b768548cb94f71def [
file
] [
log
] [
blame
]
// build-pass (FIXME(62277): could be check-pass?)
#![
allow
(
dead_code
)]
macro_rules
!
foo
{
(
$x
:
tt
)
=>
(
type
Alias
=
$x
<
i32
>;)
}
foo
!(
Box
);
fn
main
()
{}