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