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() {}