Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
macro-path.rs
blob: 6c011c897da50ffd7e6c397ff74a334aa3ddc83d [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
non_camel_case_types
)]
mod
m
{
pub
type
t
=
isize
;
}
macro_rules
!
foo
{
(
$p
:
path
)
=>
({
fn
f
()
->
$p
{
10
}
f
()
})
}
pub
fn
main
()
{
assert_eq
!(
foo
!(
m
::
t
),
10
);
}