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 {
340340pub mod doc_block_table {
341341
342342 pub trait DocBlockTableTrait {
343- fn func ( ) ;
343+ fn foo ( ) ;
344344 }
345345
346346 /// Struct doc.
@@ -359,7 +359,7 @@ pub mod doc_block_table {
359359 /// | header1 | header2 |
360360 /// |--------------------------|--------------------------|
361361 /// | Lorem Ipsum, Lorem Ipsum | Lorem Ipsum, Lorem Ipsum |
362- fn func ( ) {
362+ fn foo ( ) {
363363 println ! ( ) ;
364364 }
365365 }
@@ -474,3 +474,15 @@ impl TypeWithImplDoc {
474474///
475475/// </sub>
476476pub 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