-
@jaredwy reports a failure building https://github.com/jaredwy/friendlyrust/commit/3eeb0350b34384decff29306080cc9e3b1d8ad67 on OS X 10.10.5 using Rust 1.10.0 and serde_codegen 0.8.0, 0.8.1 and master.…
-
The following code ([Playground link](https://is.gd/VeDxzS)) produces an ICE on Rust 1.14.0 on Arch Linux x86_64.
```rust
pub trait AnyFilter {
type Item;
fn any_filter(self, filters: &[…
-
[This program](https://gist.github.com/alexcrichton/8406d47f929dddd26c077a9ffac62a8a) compiles successfully on stable but hits the recursion limit on beta/nightly. This seems like a regression where w…
-
@pcwalton : looks like something gets out of sync between the list and the offsets.
```
thread 'LayoutWorker worker 3/3' panicked at 'called `Result::unwrap()` on an `Err` value: RecvError', ../src/l…
-
As per feedback from Krate on the Google Code SVN, wfx_widgets() could benefit from being extended to include new parameters such as:
- $empty_msg = Shown when widget area not populated
- $empty_link …
-
The following code results in a compiler panic:
```
#![feature(associated_consts)]
struct Foo;
impl Foo {
pub const FOO: u32 = 3;
}
fn main() {
Foo::FOO;
}
```
Backtrace:
```
$ RUST_BACK…
-
For this malformed code:
```rust
enum Foo { Bar }
struct Bar;
fn main() {
use Foo::Bar;
Bar::test();
}
```
rustc 1.14 gives the following expected error:
```
error[E0248]: f…
-
``` rust
enum E { V { x: u8 } }
fn main() {
match (E::V { x: 0 }) {
E::V_Typoed { .. } => {}
}
}
```
Produces, on beta:
``` rust
error: internal compiler error: ../src/librustc/hir/…
eddyb updated
8 years ago
-
I tried to match on a mpsc::RecvError, but used the wrong name for variant. I expected rustc to just error, but instead it als gives a ICE.
backtrace:
```
Compiling program_name v0.1.0
(file://…
-
my crate was getting stackoverflow on running cargo clippy. narrowed it down to running just against chrono :( not sure how to investigate further
am using 09-21 nightly (windows-gnu and windows-msvc…