-
Occurs with `regex 0.1.75 (ac9ced6)`. The Krate-edge leads to everything being re-compiled for any change. The edge *does not* occur when compiling with `--release`.
-
The code breaking compiler:
```rust
extern crate byteorder;
use std::io::Result;
use byteorder::{ByteOrder, WriteBytesExt};
pub trait GenericWriteBytesMarker: Sized {}
impl GenericWriteB…
-
System Info:
> Xubuntu 13.10
> rustc 1.0.0-nightly (d3732a12e 2015-02-06 23:30:17 +0000)
> binary: rustc
> commit-hash: d3732a12e896ab98aa27eaffab99a78bbaf837e4
> commit-date: 2015-02-06 23:30:17 +00…
-
It appears we are not checking for crate-numbers having changed. The best thing here would probably be to find the new crate-number. The easiest thing, however, would be to store -- for each crate-num…
-
https://github.com/mrjones/rust-protobuf-json 5dbb6be3e4fed92ede0c5ddc9e5a0560ef27e0f8
```
brian@ip-10-145-43-250:/mnt2/dev⟫ rustc +beta -Vv
rustc 1.16.0-beta.1 (5276ba72e 2017-01-31)
binary: ru…
brson updated
7 years ago
-
```rust
#![feature(associated_consts)]
trait Foo {
const X: u8 = 42;
fn test();
}
enum Bar {
X
}
impl Foo for Bar {
fn test() {
println!("{}", Self::X);
}…
-
When an enum value is incorrectly initialized as a variant, the Rust compiler slips on ICE.
### Minimal
```rust
#[derive(PartialEq, PartialOrd, Clone, Debug)]
pub enum Sexp {
/// A symbol…
-
If a crate has its max version yanked, it should update the max_version field to go back to the otherwise maximum version.
-
PR https://github.com/rust-lang/rust/pull/37660 separates impl items from impls in the HIR for improved interaction with incremental compilation. It probably makes sense to separate trait items from t…
-
Elo doesn't quite fit. Matches that are further in the past shouldn't count as much to the score as more recent ones.