112a9d9c8Sopenharmony_ci/** Document enum */
212a9d9c8Sopenharmony_cienum B {
312a9d9c8Sopenharmony_ci    /// Document field with three slashes
412a9d9c8Sopenharmony_ci    VAR_A = 0,
512a9d9c8Sopenharmony_ci    /** Document field with preceeding star */
612a9d9c8Sopenharmony_ci    VAR_B = 1,
712a9d9c8Sopenharmony_ci    /*! Document field with preceeding exclamation */
812a9d9c8Sopenharmony_ci    VAR_C = 2,
912a9d9c8Sopenharmony_ci    VAR_D = 3, /**< Document field with following star */
1012a9d9c8Sopenharmony_ci    VAR_E = 4, /*!< Document field with following exclamation */
1112a9d9c8Sopenharmony_ci    /**
1212a9d9c8Sopenharmony_ci     * Document field with preceeding star, with a loong long multiline
1312a9d9c8Sopenharmony_ci     * comment.
1412a9d9c8Sopenharmony_ci     *
1512a9d9c8Sopenharmony_ci     * Very interesting documentation, definitely.
1612a9d9c8Sopenharmony_ci     */
1712a9d9c8Sopenharmony_ci    VAR_F,
1812a9d9c8Sopenharmony_ci};
19