mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
20 lines
516 B
Rust
20 lines
516 B
Rust
// @has issue_41783/struct.Foo.html
|
|
// @!has - 'space'
|
|
// @!has - 'comment'
|
|
// @has - '# <span class="ident">single'
|
|
// @has - '## <span class="ident">double</span>'
|
|
// @has - '### <span class="ident">triple</span>'
|
|
// @has - '<span class="attribute">#[<span class="ident">outer</span>]</span>'
|
|
// @has - '<span class="attribute">#![<span class="ident">inner</span>]</span>'
|
|
|
|
/// ```no_run
|
|
/// # # space
|
|
/// # comment
|
|
/// ## single
|
|
/// ### double
|
|
/// #### triple
|
|
/// ##[outer]
|
|
/// ##![inner]
|
|
/// ```
|
|
pub struct Foo;
|