summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/issue-112342-1.rs
blob: bd2abe7f697f4f8d66e56cff3681b75ab73f6d55 (plain)
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
48
49
// same as #95267, ignore doc comment although it's a bug.

macro_rules! m1 {
    (
        $(
            ///
        )*
        //~^^^ERROR repetition matches empty token tree
    ) => {};
}

m1! {}

macro_rules! m2 {
    (
        $(
            ///
        )+
        //~^^^ERROR repetition matches empty token tree
    ) => {};
}

m2! {}

macro_rules! m3 {
    (
        $(
            ///
        )?
        //~^^^ERROR repetition matches empty token tree
    ) => {};
}

m3! {}


macro_rules! m4 {
    (
        $(
            ///
            ///
        )*
        //~^^^^ERROR repetition matches empty token tree
    ) => {};
}

m4! {}

fn main() {}