mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-08-27 05:31:15 -04:00
c1e7498e84
Signed-off-by: a30054014 <aipeng3@huawei.com>
19 lines
514 B
C
19 lines
514 B
C
/** Document enum */
|
|
enum B {
|
|
/// Document field with three slashes
|
|
VAR_A = 0,
|
|
/** Document field with preceding star */
|
|
VAR_B = 1,
|
|
/*! Document field with preceding exclamation */
|
|
VAR_C = 2,
|
|
VAR_D = 3, /**< Document field with following star */
|
|
VAR_E = 4, /*!< Document field with following exclamation */
|
|
/**
|
|
* Document field with preceding star, with a loong long multiline
|
|
* comment.
|
|
*
|
|
* Very interesting documentation, definitely.
|
|
*/
|
|
VAR_F,
|
|
};
|