We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Rem::Output
1 parent 9f06855 commit ba30dcaCopy full SHA for ba30dca
src/libcore/lib.rs
@@ -69,7 +69,6 @@
69
#![feature(allow_internal_unstable)]
70
#![feature(arbitrary_self_types)]
71
#![feature(asm)]
72
-#![feature(associated_type_defaults)]
73
#![feature(bound_cloned)]
74
#![feature(cfg_target_has_atomic)]
75
#![feature(concat_idents)]
src/libcore/ops/arith.rs
@@ -508,7 +508,7 @@ div_impl_float! { f32 f64 }
508
pub trait Rem<Rhs=Self> {
509
/// The resulting type after applying the `%` operator.
510
#[stable(feature = "rust1", since = "1.0.0")]
511
- type Output = Self;
+ type Output;
512
513
/// Performs the `%` operation.
514
#[must_use]
0 commit comments