File: unused-macro-rules.rs

package info (click to toggle)
rustc-web 1.70.0%2Bdfsg1-7~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,517,036 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,006; asm: 2,856
file content (47 lines) | stat: -rw-r--r-- 1,169 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#![deny(unused_macro_rules)]
// To make sure we are not hitting this
#![deny(unused_macros)]

// Most simple case
macro_rules! num {
    (one) => { 1 };
    (two) => { 2 }; //~ ERROR: 2nd rule of macro
    (three) => { 3 };
    (four) => { 4 }; //~ ERROR: 4th rule of macro
}
const _NUM: u8 = num!(one) + num!(three);

// Check that allowing the lint works
#[allow(unused_macro_rules)]
macro_rules! num_allowed {
    (one) => { 1 };
    (two) => { 2 };
    (three) => { 3 };
    (four) => { 4 };
}
const _NUM_ALLOWED: u8 = num_allowed!(one) + num_allowed!(three);

// Check that macro calls inside the macro trigger as usage
macro_rules! num_rec {
    (one) => { 1 };
    (two) => {
        num_rec!(one) + num_rec!(one)
    };
    (three) => { //~ ERROR: 3rd rule of macro
        num_rec!(one) + num_rec!(two)
    };
    (four) => { num_rec!(two) + num_rec!(two) };
}
const _NUM_RECURSIVE: u8 = num_rec!(four);

// No error if the macro is being exported
#[macro_export]
macro_rules! num_exported {
    (one) => { 1 };
    (two) => { 2 };
    (three) => { 3 };
    (four) => { 4 };
}
const _NUM_EXPORTED: u8 = num_exported!(one) + num_exported!(three);

fn main() {}