blob: b5d14b3cf0788978b71e509c6303a6b9c85fb6ae [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
/// Document field with three slashes
pub const B_VAR_A: B = 0;
/// Document field with preceeding star
pub const B_VAR_B: B = 1;
/// Document field with preceeding exclamation
pub const B_VAR_C: B = 2;
///< Document field with following star
pub const B_VAR_D: B = 3;
///< Document field with following exclamation
pub const B_VAR_E: B = 4;
/// Document field with preceeding star, with a loong long multiline
/// comment.
///
/// Very interesting documentation, definitely.
pub const B_VAR_F: B = 5;
/// Document enum
pub type B = ::std::os::raw::c_uint;