File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
//! The WIP stable interface to rustc internals.
2
2
//!
3
- //! For more information see https://github.com/rust-lang/project-stable-mir
3
+ //! For more information see < https://github.com/rust-lang/project-stable-mir>
4
4
//!
5
5
//! # Note
6
6
//!
14
14
#![ feature( local_key_cell_methods) ]
15
15
#![ feature( ptr_metadata) ]
16
16
#![ feature( type_alias_impl_trait) ] // Used to define opaque types.
17
+ #![ feature( intra_doc_pointers) ]
17
18
18
19
// Declare extern rustc_* crates to enable building this crate separately from the compiler.
19
20
#[ cfg( not( feature = "default" ) ) ]
Original file line number Diff line number Diff line change @@ -185,9 +185,9 @@ pub enum Rvalue {
185
185
/// [#91095]. Note too that the value of the discriminant is not the same thing as the
186
186
/// variant index; use [`discriminant_for_variant`] to convert.
187
187
///
188
- /// [`discriminant_ty`]: crate ::ty::Ty::discriminant_ty
188
+ /// [`discriminant_ty`]: rustc_middle ::ty::Ty::discriminant_ty
189
189
/// [#91095]: https://github.com/rust-lang/rust/issues/91095
190
- /// [`discriminant_for_variant`]: crate ::ty::Ty::discriminant_for_variant
190
+ /// [`discriminant_for_variant`]: rustc_middle ::ty::Ty::discriminant_for_variant
191
191
Discriminant ( Place ) ,
192
192
193
193
/// Yields the length of the place, as a `usize`.
You can’t perform that action at this time.
0 commit comments