summaryrefslogtreecommitdiff
path: root/tests/headers/enum-doc.h
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2018-02-12 20:43:43 +0100
committerEmilio Cobos Álvarez <emilio@crisal.io>2018-02-12 20:43:43 +0100
commitb1f9cf99bc39c5f5e1ca68acd75c4ab845b097e8 (patch)
treeef89803076d9b2280dd79240042b78eb51634099 /tests/headers/enum-doc.h
parent5d04c364414699f7a2a0f16383fb29e68b4fdca3 (diff)
tests: Add a test for multiline comments in enum variants.
Diffstat (limited to 'tests/headers/enum-doc.h')
-rw-r--r--tests/headers/enum-doc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/headers/enum-doc.h b/tests/headers/enum-doc.h
index 53a91201..58e2c69e 100644
--- a/tests/headers/enum-doc.h
+++ b/tests/headers/enum-doc.h
@@ -8,4 +8,11 @@ enum B {
VAR_C = 2,
VAR_D = 3, /**< Document field with following star */
VAR_E = 4, /*!< Document field with following exclamation */
+ /**
+ * Document field with preceeding star, with a loong long multiline
+ * comment.
+ *
+ * Very interesting documentation, definitely.
+ */
+ VAR_F,
};