summaryrefslogtreecommitdiffstats
path: root/testing/067_link_varargs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testing/067_link_varargs.cpp')
-rw-r--r--testing/067_link_varargs.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/067_link_varargs.cpp b/testing/067_link_varargs.cpp
new file mode 100644
index 0000000..8cf25a2
--- /dev/null
+++ b/testing/067_link_varargs.cpp
@@ -0,0 +1,20 @@
+// objective: test \link command with function variadic arguments '...'
+// check: 067__link__varargs_8cpp.xml
+
+/** \file
+ * See \link func(int,...) the function\endlink for more info.
+ * See the \link Test test\endlink class.
+ */
+
+/** A function
+ */
+void func(int p);
+
+/** Overloaded function taking variadic arguments
+ */
+void func(int p, ...);
+
+/** A test */
+class Test
+{
+};