diff options
Diffstat (limited to 'tests/expectations/tests/enum-doc-mod.rs')
-rw-r--r-- | tests/expectations/tests/enum-doc-mod.rs | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/expectations/tests/enum-doc-mod.rs b/tests/expectations/tests/enum-doc-mod.rs deleted file mode 100644 index 60d6b9f4..00000000 --- a/tests/expectations/tests/enum-doc-mod.rs +++ /dev/null @@ -1,26 +0,0 @@ -#![allow( - dead_code, - non_snake_case, - non_camel_case_types, - non_upper_case_globals -)] - -pub mod B { - /// Document enum - pub type Type = ::std::os::raw::c_uint; - /// Document field with three slashes - pub const VAR_A: Type = 0; - /// Document field with preceeding star - pub const VAR_B: Type = 1; - /// Document field with preceeding exclamation - pub const VAR_C: Type = 2; - ///< Document field with following star - 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; -} |