Imported Upstream version 1.8.15
[platform/upstream/doxygen.git] / testing / 068_ref_varargs.cpp
1 // objective: test \ref command with function variadic arguments '...'
2 // check: 068__ref__varargs_8cpp.xml
3
4 /** \file
5  *  See \ref func(int,...) "the function" for more info.
6  *  See the \ref Test "test" 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 };