Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
auxiliary
/
ice-7272-aux.rs
blob: 780797e3c6aa42291af2d15e66e988a6a9e160e9 [
file
] [
log
] [
blame
]
pub
fn
warn
<
T
>(
_
:
T
)
{}
macro_rules
!
define_macro
{
(
$d
:
tt $lower
:
ident $upper
:
ident
)
=>
{
#[
macro_export
]
macro_rules
!
$upper
{
(
$arg
:
tt
)
=>
{
$crate
::
$lower
(
$arg
)
};
}
};
}
define_macro
!
{
$ warn WARNING
}