summaryrefslogtreecommitdiffstats
path: root/testing/decl_def.h
diff options
context:
space:
mode:
Diffstat (limited to 'testing/decl_def.h')
-rw-r--r--testing/decl_def.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/decl_def.h b/testing/decl_def.h
new file mode 100644
index 0000000..6e39335
--- /dev/null
+++ b/testing/decl_def.h
@@ -0,0 +1,10 @@
+namespace N
+{
+
+/** @brief variable declaration */
+extern int var;
+
+/** @brief function declaration */
+void foo(int param);
+
+}