File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11//! The WIP stable interface to rustc internals.
22//!
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>
44//!
55//! # Note
66//!
1414#![ feature( local_key_cell_methods) ]
1515#![ feature( ptr_metadata) ]
1616#![ feature( type_alias_impl_trait) ] // Used to define opaque types.
17+ #![ feature( intra_doc_pointers) ]
1718
1819// Declare extern rustc_* crates to enable building this crate separately from the compiler.
1920#[ cfg( not( feature = "default" ) ) ]
Original file line number Diff line number Diff line change @@ -185,9 +185,9 @@ pub enum Rvalue {
185185 /// [#91095]. Note too that the value of the discriminant is not the same thing as the
186186 /// variant index; use [`discriminant_for_variant`] to convert.
187187 ///
188- /// [`discriminant_ty`]: crate ::ty::Ty::discriminant_ty
188+ /// [`discriminant_ty`]: rustc_middle ::ty::Ty::discriminant_ty
189189 /// [#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
191191 Discriminant ( Place ) ,
192192
193193 /// Yields the length of the place, as a `usize`.
You can’t perform that action at this time.
0 commit comments