File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
tests/rustdoc-gui/src/test_docs Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ pub mod details {
340
340
pub mod doc_block_table {
341
341
342
342
pub trait DocBlockTableTrait {
343
- fn func ( ) ;
343
+ fn foo ( ) ;
344
344
}
345
345
346
346
/// Struct doc.
@@ -359,7 +359,7 @@ pub mod doc_block_table {
359
359
/// | header1 | header2 |
360
360
/// |--------------------------|--------------------------|
361
361
/// | Lorem Ipsum, Lorem Ipsum | Lorem Ipsum, Lorem Ipsum |
362
- fn func ( ) {
362
+ fn foo ( ) {
363
363
println ! ( ) ;
364
364
}
365
365
}
@@ -474,3 +474,15 @@ impl TypeWithImplDoc {
474
474
///
475
475
/// </sub>
476
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
+ }
You can’t perform that action at this time.
0 commit comments