-
There's a hard check for `user_id == krate.user_id` that should just be removed. I'll do this in the GH-teams feature.
-
The following code crashes with
```
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.co…
-
I get this output:
```
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lan…
-
Modified from an example that @ahwatts provided in issue #22933:
``` rust
struct Apple;
enum Delicious {
ApplePie = Apple::PIE,
}
fn main() {}
```
Output with a recent nightly:
```
test_argl.…
-
A compiler panic occurs when trying to compile this snippet of code:
```
mod MyMod{
}
fn main() {
let myVar = MyMod{T:0u64};
}
```
note: the compiler unexpectedly panicked. this is a bug.
note:…
ghost updated
9 years ago
-
``` rust
struct Generic
{
pub size: u32,
pub data: [u32; Generic::ckSize]
}
#[test]
fn it_works() {
}
```
Outputs:
```
error: internal compiler error: unexpected panic
note: the compiler un…
-
Here's the ICE:
``` Shell
> cargo doc
```
``` Rust
:1:1: 1:2 [31merror: (B[m[1munknown start of token: \\(B[m
:1 \Gamma^*(x) = \Gamma(x)/(\sqrt{2\pi} x^{(x-1/2)} \exp(-x))
[31m^(B…
-
cc @Diggsey
Configure:
```
./configure
```
Build:
```
$ make check-notidy TESTNAME=backtrace.rs
cfg: version 1.5.0-dev (355daea40 2015-09-16)
cfg: build triple x86_64-pc-windows-gnu
cfg: host tri…
-
I accidentially defined an enum in the wrong way, compiler crashed just after wrinting error messsage.
I tried this code:
``` rust
#![crate_name = "Test"]
#![crate_type = "dylib"]
#[repr(C)]
enum F…
-
I tried this code:
``` rust
#![feature(core, libc, os, unicode)]
extern crate libc;
extern crate unicode;
use std::mem;
use std::num::ToPrimitive;
use std::os;
#[cfg(target_family = "windows")]
#[l…