diff --git a/src/libstd/to_str.rs b/src/libstd/to_str.rs index 3cc64147964..d15c0a31f5f 100644 --- a/src/libstd/to_str.rs +++ b/src/libstd/to_str.rs @@ -91,7 +91,7 @@ fn to_str(&self) -> ~str { impl ToStr for (A, B) { #[inline(always)] fn to_str(&self) -> ~str { - // FIXME(#4760): this causes an llvm assertion + // FIXME(#4653): this causes an llvm assertion //let &(ref a, ref b) = self; match *self { (ref a, ref b) => { @@ -104,7 +104,7 @@ fn to_str(&self) -> ~str { impl ToStr for (A, B, C) { #[inline(always)] fn to_str(&self) -> ~str { - // FIXME(#4760): this causes an llvm assertion + // FIXME(#4653): this causes an llvm assertion //let &(ref a, ref b, ref c) = self; match *self { (ref a, ref b, ref c) => {