diff options
Diffstat (limited to 'tests/headers/enum-doc.h')
-rw-r--r-- | tests/headers/enum-doc.h | 7 |
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, }; |