2017-05-06 07:08:41 -06:00
|
|
|
// @has issue_41783/struct.Foo.html
|
|
|
|
// @!has - 'space'
|
|
|
|
// @!has - 'comment'
|
2022-08-10 13:13:18 -07:00
|
|
|
// @hasraw - '# <span class="ident">single'
|
|
|
|
// @hasraw - '## <span class="ident">double</span>'
|
|
|
|
// @hasraw - '### <span class="ident">triple</span>'
|
|
|
|
// @hasraw - '<span class="attribute">#[<span class="ident">outer</span>]</span>'
|
|
|
|
// @hasraw - '<span class="attribute">#![<span class="ident">inner</span>]</span>'
|
2017-05-06 07:08:41 -06:00
|
|
|
|
|
|
|
/// ```no_run
|
|
|
|
/// # # space
|
|
|
|
/// # comment
|
|
|
|
/// ## single
|
|
|
|
/// ### double
|
|
|
|
/// #### triple
|
2017-08-28 10:52:49 -04:00
|
|
|
/// ##[outer]
|
|
|
|
/// ##![inner]
|
2017-05-06 07:08:41 -06:00
|
|
|
/// ```
|
|
|
|
pub struct Foo;
|