Remove the default type of Rem::Output
This commit is contained in:
parent
9f06855064
commit
ba30dcad2f
2 changed files with 1 additions and 2 deletions
|
|
@ -69,7 +69,6 @@
|
|||
#![feature(allow_internal_unstable)]
|
||||
#![feature(arbitrary_self_types)]
|
||||
#![feature(asm)]
|
||||
#![feature(associated_type_defaults)]
|
||||
#![feature(bound_cloned)]
|
||||
#![feature(cfg_target_has_atomic)]
|
||||
#![feature(concat_idents)]
|
||||
|
|
|
|||
|
|
@ -508,7 +508,7 @@ div_impl_float! { f32 f64 }
|
|||
pub trait Rem<Rhs=Self> {
|
||||
/// The resulting type after applying the `%` operator.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
type Output = Self;
|
||||
type Output;
|
||||
|
||||
/// Performs the `%` operation.
|
||||
#[must_use]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue