We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e09e6df commit 8211760Copy full SHA for 8211760
tests/rustdoc-gui/src/test_docs/lib.rs
@@ -340,7 +340,7 @@ pub mod details {
340
pub mod doc_block_table {
341
342
pub trait DocBlockTableTrait {
343
- fn func();
+ fn foo();
344
}
345
346
/// Struct doc.
@@ -359,7 +359,7 @@ pub mod doc_block_table {
359
/// | header1 | header2 |
360
/// |--------------------------|--------------------------|
361
/// | Lorem Ipsum, Lorem Ipsum | Lorem Ipsum, Lorem Ipsum |
362
- fn func() {
+ fn foo() {
363
println!();
364
365
@@ -474,3 +474,15 @@ impl TypeWithImplDoc {
474
///
475
/// </sub>
476
pub mod codeblock_sub {}
477
+pub mod search_results {
478
+
479
+ pub struct SearchResults {
480
+ pub foo: i32,
481
+ }
482
483
+ #[macro_export]
484
+ macro_rules! foo {
485
+ () => {};
486
487
488
+}
0 commit comments