File indexing completed on 2024-06-16 04:24:20

0001 struct foo
0002 {
0003     /// "isDefinition": true
0004     foo() {}
0005     /// "isDefinition": true
0006     ~foo() {}
0007     /// "isDefinition": true
0008     void blub() {}
0009 };
0010 
0011 struct bar
0012 {
0013     /// "isDefinition": false
0014     bar();
0015     /// "isDefinition": false
0016     ~bar();
0017     /// "isDefinition": false
0018     void blub();
0019 };