mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Auto merge of #115074 - matthiaskrgr:rollup-au2i7k0, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #115044 (stable_mir: docs clarification) - #115054 (Fix syntax in E0191 explanation.) - #115067 (docs: add alias log1p to ln_1p) r? `@ghost` `@rustbot` modify labels: rollup
This commit is contained in:
commit
ef85656a10
@ -7,8 +7,8 @@ trait Trait {
|
||||
type Bar;
|
||||
}
|
||||
|
||||
type Foo = Trait; // error: the value of the associated type `Bar` (from
|
||||
// the trait `Trait`) must be specified
|
||||
type Foo = dyn Trait; // error: the value of the associated type `Bar` (from
|
||||
// the trait `Trait`) must be specified
|
||||
```
|
||||
|
||||
Trait objects need to have all associated types specified. Please verify that
|
||||
@ -20,5 +20,5 @@ trait Trait {
|
||||
type Bar;
|
||||
}
|
||||
|
||||
type Foo = Trait<Bar=i32>; // ok!
|
||||
type Foo = dyn Trait<Bar=i32>; // ok!
|
||||
```
|
||||
|
@ -1,6 +1,6 @@
|
||||
//! Module that implements the public interface to the Stable MIR.
|
||||
//!
|
||||
//! This module shall contain all type definitions and APIs that we expect 3P tools to invoke to
|
||||
//! This module shall contain all type definitions and APIs that we expect third-party tools to invoke to
|
||||
//! interact with the compiler.
|
||||
//!
|
||||
//! The goal is to eventually move this module to its own crate which shall be published on
|
||||
|
@ -822,6 +822,7 @@ impl f32 {
|
||||
///
|
||||
/// assert!(abs_difference < 1e-10);
|
||||
/// ```
|
||||
#[doc(alias = "log1p")]
|
||||
#[rustc_allow_incoherent_impl]
|
||||
#[must_use = "method returns a new number and does not mutate the original value"]
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
|
@ -822,6 +822,7 @@ impl f64 {
|
||||
///
|
||||
/// assert!(abs_difference < 1e-20);
|
||||
/// ```
|
||||
#[doc(alias = "log1p")]
|
||||
#[rustc_allow_incoherent_impl]
|
||||
#[must_use = "method returns a new number and does not mutate the original value"]
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
|
Loading…
Reference in New Issue
Block a user