aboutsummaryrefslogtreecommitdiff
path: root/tests/fixtures/c/indented.c
blob: 0b7a9f6fa00e19f9d3e432bc757451fc93376594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
enum my_enum {
    /* md
    @name my_enum/one
    My explanation of type_one
    */
    type_one = 1;
    /* md
    @name my_enum/two
    My explanation of type_two
    	relative indented line
    */
    type_two = 2;
}