Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
span
/
macro-span-replacement.rs
blob: 66973c58d35cd66443455b59dd04f9065d1e2d3a [
file
] [
log
] [
blame
]
// check-pass
#![
warn
(
unused
)]
macro_rules
!
m
{
(
$a
:
tt $b
:
tt
)
=>
{
$b $a
;
//~ WARN struct `S` is never constructed
}
}
fn
main
()
{
m
!(
S
struct
);
}