Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 083_decl_def.cpp
1 // objective: test for declaration and definition order independence: def first
2 // check: namespace_n.xml
3 // config: INPUT = $INPUTDIR/083_decl_def.cpp $INPUTDIR/decl_def.h
4 #include "test.h"
5
6 /** Namespace */
7 namespace N
8 {
9
10 /** Detailed docs. */
11 int var;
12
13 /** Detailed docs. */
14 void foo(int param)
15 {
16 }
17
18 }