File tree 4 files changed +6
-4
lines changed
rustc_error_codes/src/error_codes
rustc_smir/src/stable_mir
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ trait Trait {
7
7
type Bar;
8
8
}
9
9
10
- type Foo = Trait; // error: the value of the associated type `Bar` (from
11
- // the trait `Trait`) must be specified
10
+ type Foo = dyn Trait; // error: the value of the associated type `Bar` (from
11
+ // the trait `Trait`) must be specified
12
12
```
13
13
14
14
Trait objects need to have all associated types specified. Please verify that
@@ -20,5 +20,5 @@ trait Trait {
20
20
type Bar;
21
21
}
22
22
23
- type Foo = Trait<Bar=i32>; // ok!
23
+ type Foo = dyn Trait<Bar=i32>; // ok!
24
24
```
Original file line number Diff line number Diff line change 1
1
//! Module that implements the public interface to the Stable MIR.
2
2
//!
3
- //! This module shall contain all type definitions and APIs that we expect 3P tools to invoke to
3
+ //! This module shall contain all type definitions and APIs that we expect third-party tools to invoke to
4
4
//! interact with the compiler.
5
5
//!
6
6
//! The goal is to eventually move this module to its own crate which shall be published on
Original file line number Diff line number Diff line change @@ -822,6 +822,7 @@ impl f32 {
822
822
///
823
823
/// assert!(abs_difference < 1e-10);
824
824
/// ```
825
+ #[ doc( alias = "log1p" ) ]
825
826
#[ rustc_allow_incoherent_impl]
826
827
#[ must_use = "method returns a new number and does not mutate the original value" ]
827
828
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
Original file line number Diff line number Diff line change @@ -822,6 +822,7 @@ impl f64 {
822
822
///
823
823
/// assert!(abs_difference < 1e-20);
824
824
/// ```
825
+ #[ doc( alias = "log1p" ) ]
825
826
#[ rustc_allow_incoherent_impl]
826
827
#[ must_use = "method returns a new number and does not mutate the original value" ]
827
828
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
You can’t perform that action at this time.
0 commit comments