summaryrefslogtreecommitdiffstats
path: root/testing/072_no_xml_namespace_members_in_file_scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'testing/072_no_xml_namespace_members_in_file_scope.h')
-rw-r--r--testing/072_no_xml_namespace_members_in_file_scope.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/072_no_xml_namespace_members_in_file_scope.h b/testing/072_no_xml_namespace_members_in_file_scope.h
new file mode 100644
index 0000000..fb1afab
--- /dev/null
+++ b/testing/072_no_xml_namespace_members_in_file_scope.h
@@ -0,0 +1,16 @@
+// objective: test that namespace members are not put to file docs by default
+// check: 072__no__xml__namespace__members__in__file__scope_8h.xml
+
+namespace Namespace {
+
+/**
+@brief A function
+
+Detailed documentation.
+*/
+void foo();
+
+/** @brief An enum */
+enum class Enum {};
+
+}