rust/tests/ui/lint/unused/issue-70041.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
369 B
Plaintext
Raw Normal View History

warning: unused macro definition: `regex`
--> $DIR/issue-70041.rs:4:14
2020-03-16 13:17:40 -05:00
|
LL | macro_rules! regex {
| ^^^^^
2020-03-16 13:17:40 -05:00
|
= note: `#[warn(unused_macros)]` on by default
warning: unused import: `regex`
--> $DIR/issue-70041.rs:10:5
|
LL | use regex;
| ^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: 2 warnings emitted