Synopsis - Cross-Reference

File: /tests/Processors/Comments/input/groups.cc
 1// -*- Comments.SSFilter -*-
 2// -*- Comments.Grouper -*-
 3
 4// group documentation
 5// @group first group {
 6
 7// some comment
 8// extending over multiple lines
 9
10// another comment
11struct foo
12{
13};
14int test1;
15int test2;
16// }
17int bar;
18// another group
19// @group tests {
20int test3;
21int test4;
22// }
23
24// @group outer {
25
26// @group inner {
27int f;
28// @group xxx { not a group
29int test5;
30// } and not a group end
31// }
32// and not a group either
33int test6;
34// }
35
36// }