File tree 1 file changed +11
-5
lines changed
compiler/rustc_middle/src/query
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ rustc_queries! {
92
92
/// Computes the `DefId` of the corresponding const parameter in case the `key` is a
93
93
/// const argument and returns `None` otherwise.
94
94
///
95
- /// ```rust
95
+ /// ```ignore (incomplete)
96
96
/// let a = foo::<7>();
97
97
/// // ^ Calling `opt_const_param_of` for this argument,
98
98
///
@@ -162,10 +162,12 @@ rustc_queries! {
162
162
/// Specifically this is the bounds written on the trait's type
163
163
/// definition, or those after the `impl` keyword
164
164
///
165
+ /// ```ignore (incomplete)
165
166
/// type X: Bound + 'lt
166
- /// ^^^^^^^^^^^
167
+ /// // ^^^^^^^^^^^
167
168
/// impl Debug + Display
168
- /// ^^^^^^^^^^^^^^^
169
+ /// // ^^^^^^^^^^^^^^^
170
+ /// ```
169
171
///
170
172
/// `key` is the `DefId` of the associated type or opaque type.
171
173
///
@@ -176,18 +178,22 @@ rustc_queries! {
176
178
177
179
/// Elaborated version of the predicates from `explicit_item_bounds`.
178
180
///
179
- /// Example for
181
+ /// For example:
180
182
///
183
+ /// ```
181
184
/// trait MyTrait {
182
- /// type MyAType: Eq + ?Sized`
185
+ /// type MyAType: Eq + ?Sized;
183
186
/// }
187
+ /// ```
184
188
///
185
189
/// `explicit_item_bounds` returns `[<Self as MyTrait>::MyAType: Eq]`,
186
190
/// and `item_bounds` returns
191
+ /// ```text
187
192
/// [
188
193
/// <Self as Trait>::MyAType: Eq,
189
194
/// <Self as Trait>::MyAType: PartialEq<<Self as Trait>::MyAType>
190
195
/// ]
196
+ /// ```
191
197
///
192
198
/// Bounds from the parent (e.g. with nested impl trait) are not included.
193
199
query item_bounds( key: DefId ) -> & ' tcx ty:: List <ty:: Predicate <' tcx>> {
You can’t perform that action at this time.
0 commit comments