File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
src/test/rustdoc-gui/src/test_docs Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ pub mod details {
334
334
pub mod doc_block_table {
335
335
336
336
pub trait DocBlockTableTrait {
337
- fn func ( ) ;
337
+ fn foo ( ) ;
338
338
}
339
339
340
340
/// Struct doc.
@@ -350,7 +350,7 @@ pub mod doc_block_table {
350
350
/// | header1 | header2 |
351
351
/// |--------------------------|--------------------------|
352
352
/// | Lorem Ipsum, Lorem Ipsum | Lorem Ipsum, Lorem Ipsum |
353
- fn func ( ) {
353
+ fn foo ( ) {
354
354
println ! ( ) ;
355
355
}
356
356
}
@@ -416,3 +416,16 @@ pub trait TraitWithoutGenerics {
416
416
417
417
fn foo ( ) ;
418
418
}
419
+
420
+ pub mod search_results {
421
+
422
+ pub struct SearchResults {
423
+ pub foo : i32 ,
424
+ }
425
+
426
+ #[ macro_export]
427
+ macro_rules! foo {
428
+ ( ) => { } ;
429
+ }
430
+
431
+ }
You can’t perform that action at this time.
0 commit comments