We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 242633f commit 13aa900Copy full SHA for 13aa900
compiler/rustc_trait_selection/src/solve/search_graph.rs
@@ -61,10 +61,11 @@ struct DetachedEntry<'tcx> {
61
///
62
/// Given the following rules, when proving `A` the head for
63
/// the provisional entry of `C` would be `B`.
64
- ///
65
- /// A :- B
66
- /// B :- C
67
- /// C :- A + B + C
+ /// ```plain
+ /// A :- B
+ /// B :- C
+ /// C :- A + B + C
68
+ /// ```
69
head: StackDepth,
70
result: QueryResult<'tcx>,
71
}
0 commit comments