File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change 17
17
// @has - '//a/@href' '../intra_links/fn.this_function.html'
18
18
// @has - '//a/@href' '../intra_links/constant.THIS_CONST.html'
19
19
// @has - '//a/@href' '../intra_links/static.THIS_STATIC.html'
20
+ // @has - '//a/@href' '../intra_links/macro.this_macro.html'
20
21
//! In this crate we would like to link to:
21
22
//!
22
- //! * [`ThisType`](struct ::ThisType)
23
- //! * [`ThisEnum`](enum ::ThisEnum)
24
- //! * [`ThisTrait`](trait ::ThisTrait)
25
- //! * [`ThisAlias`](type ::ThisAlias)
26
- //! * [`ThisUnion`](union ::ThisUnion)
27
- //! * [`this_function`](::this_function())
28
- //! * [`THIS_CONST`](const ::THIS_CONST)
29
- //! * [`THIS_STATIC`](static ::THIS_STATIC)
23
+ //! * [`ThisType`](ThisType)
24
+ //! * [`ThisEnum`](ThisEnum)
25
+ //! * [`ThisTrait`](ThisTrait)
26
+ //! * [`ThisAlias`](ThisAlias)
27
+ //! * [`ThisUnion`](ThisUnion)
28
+ //! * [`this_function`](this_function)
29
+ //! * [`THIS_CONST`](THIS_CONST)
30
+ //! * [`THIS_STATIC`](THIS_STATIC)
31
+ //! * [`this_macro`](this_macro!)
32
+
33
+ #[ macro_export]
34
+ macro_rules! this_macro {
35
+ ( ) => { } ;
36
+ }
30
37
31
38
pub struct ThisType ;
32
39
pub enum ThisEnum { ThisVariant , }
You can’t perform that action at this time.
0 commit comments