File tree 5 files changed +27
-0
lines changed
5 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ pub const B_VAR_C: B = B(2);
12
12
pub const B_VAR_D : B = B ( 3 ) ;
13
13
/// < Document field with following exclamation
14
14
pub const B_VAR_E : B = B ( 4 ) ;
15
+ /// Document field with preceeding star, with a loong long multiline
16
+ /// comment.
17
+ ///
18
+ /// Very interesting documentation, definitely.
19
+ pub const B_VAR_F : B = B ( 5 ) ;
15
20
impl :: std:: ops:: BitOr < B > for B {
16
21
type Output = Self ;
17
22
#[ inline]
Original file line number Diff line number Diff line change @@ -15,4 +15,9 @@ pub mod B {
15
15
pub const VAR_D : Type = 3 ;
16
16
/// < Document field with following exclamation
17
17
pub const VAR_E : Type = 4 ;
18
+ /// Document field with preceeding star, with a loong long multiline
19
+ /// comment.
20
+ ///
21
+ /// Very interesting documentation, definitely.
22
+ pub const VAR_F : Type = 5 ;
18
23
}
Original file line number Diff line number Diff line change @@ -16,4 +16,9 @@ pub enum B {
16
16
VAR_D = 3 ,
17
17
/// < Document field with following exclamation
18
18
VAR_E = 4 ,
19
+ /// Document field with preceeding star, with a loong long multiline
20
+ /// comment.
21
+ ///
22
+ /// Very interesting documentation, definitely.
23
+ VAR_F = 5 ,
19
24
}
Original file line number Diff line number Diff line change @@ -12,5 +12,10 @@ pub const B_VAR_C: B = 2;
12
12
pub const B_VAR_D : B = 3 ;
13
13
/// < Document field with following exclamation
14
14
pub const B_VAR_E : B = 4 ;
15
+ /// Document field with preceeding star, with a loong long multiline
16
+ /// comment.
17
+ ///
18
+ /// Very interesting documentation, definitely.
19
+ pub const B_VAR_F : B = 5 ;
15
20
/// Document enum
16
21
pub type B = u32 ;
Original file line number Diff line number Diff line change @@ -8,4 +8,11 @@ enum B {
8
8
VAR_C = 2 ,
9
9
VAR_D = 3 , /**< Document field with following star */
10
10
VAR_E = 4 , /*!< Document field with following exclamation */
11
+ /**
12
+ * Document field with preceeding star, with a loong long multiline
13
+ * comment.
14
+ *
15
+ * Very interesting documentation, definitely.
16
+ */
17
+ VAR_F ,
11
18
};
You can’t perform that action at this time.
0 commit comments