2017-05-06 13:08:41 +00:00
|
|
|
// @has issue_41783/struct.Foo.html
|
|
|
|
// @!has - 'space'
|
|
|
|
// @!has - 'comment'
|
2022-08-10 20:13:18 +00: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 13:08:41 +00:00
|
|
|
|
|
|
|
/// ```no_run
|
|
|
|
/// # # space
|
|
|
|
/// # comment
|
|
|
|
/// ## single
|
|
|
|
/// ### double
|
|
|
|
/// #### triple
|
2017-08-28 14:52:49 +00:00
|
|
|
/// ##[outer]
|
|
|
|
/// ##![inner]
|
2017-05-06 13:08:41 +00:00
|
|
|
/// ```
|
|
|
|
pub struct Foo;
|