mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
1d328de3ec
This swaps things around so that the class that gets used more often has the shorter name.
20 lines
490 B
Rust
20 lines
490 B
Rust
// @has issue_41783/struct.Foo.html
|
|
// @!hasraw - 'space'
|
|
// @!hasraw - 'comment'
|
|
// @hasraw - '<span class="attr">#[outer]'
|
|
// @!hasraw - '<span class="attr">#[outer]</span>'
|
|
// @hasraw - '#![inner]</span>'
|
|
// @!hasraw - '<span class="attr">#![inner]</span>'
|
|
// @snapshot 'codeblock' - '//*[@class="toggle top-doc"]/*[@class="docblock"]//pre/code'
|
|
|
|
/// ```no_run
|
|
/// # # space
|
|
/// # comment
|
|
/// ## single
|
|
/// ### double
|
|
/// #### triple
|
|
/// ##[outer]
|
|
/// ##![inner]
|
|
/// ```
|
|
pub struct Foo;
|