Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lint
/
unused
/
issue-70041.rs
blob: 817dfe821149610be3fec2784c87a805570cca0f [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: --edition=2018
//@ run-pass
macro_rules
!
regex
{
//~^ WARN unused macro definition
()
=>
{};
}
#[
allow
(
dead_code
)]
use
regex
;
//~^ WARN unused import
fn
main
()
{}