Imported Upstream version 1.8.15
[platform/upstream/doxygen.git] / testing / 067_link_varargs.cpp
1 // objective: test \link command with function variadic arguments '...'
2 // check: 067__link__varargs_8cpp.xml
3
4 /** \file
5  *  See \link func(int,...) the function\endlink for more info.
6  *  See the \link Test test\endlink class.
7  */
8
9 /** A function
10  */
11 void func(int p);
12
13 /** Overloaded function taking variadic arguments
14  */
15 void func(int p, ...);
16
17 /** A test */
18 class Test
19 {
20 };