diff options
Diffstat (limited to 'tests/expectations/tests/enum-doc-mod.rs')
-rw-r--r-- | tests/expectations/tests/enum-doc-mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/expectations/tests/enum-doc-mod.rs b/tests/expectations/tests/enum-doc-mod.rs index 8cf7d323..cb10bb3d 100644 --- a/tests/expectations/tests/enum-doc-mod.rs +++ b/tests/expectations/tests/enum-doc-mod.rs @@ -15,4 +15,9 @@ pub mod B { pub const VAR_D: Type = 3; /// < Document field with following exclamation pub const VAR_E: Type = 4; + /// Document field with preceeding star, with a loong long multiline + /// comment. + /// + /// Very interesting documentation, definitely. + pub const VAR_F: Type = 5; } |