-
While trying to replace the "secret" functions (e.g. `secret_show`) used for `format_args!` with their UFCS versions (e.g. `Show::fmt`), I ran into the following ICE:
### STR
``` rust
// fmt.rs
struc…
-
My code is certainly broken, but it triggered an ICE. Apologies if this is a duplicate! If the triggering code is useful, I've pushed a branch with the triggering material: https://github.com/spacej…
-
I get an ICE when trying to compile the following:
``` rust
#![feature(unboxed_closures)]
fn main() {
let f = |&: x: uint| x.to_string();
let bar = foo(f);
println!("{}", bar.call((1,)))…
-
Found an ICE playing with the experimental associated types:
``` rust
#![feature(associated_types)]
impl ::T;
}
fn main() {}
```
Errors with:
```
error: internal compiler error: unexpected panic
…
-
```
➜ matrix-rs git:(master) ✗ RUST_BACKTRACE=1 cargo build --verbose
Fresh rustc-serialize v0.2.4
Fresh num v0.1.5
Compiling matrix-rs v0.0.1 (file:///home/rvlander/CloudStation/WIP…
-
I was trying to build https://github.com/maurizi/rgtk/tree/update-to-latest-master
The backtrace is below:
```
$ RUST_BACKTRACE=1 cargo build --verbose
Fresh pkg-config v0.1.3
Fresh gc…
-
Input:
``` rust
extern crate syntax;
use std::gc::Gc;
use syntax::{ast, codemap};
fn main() {
let v = vec![];
match *v.get[0] {
codemap::Spanned { node: ast::MetaWord(ref trace_type…
ghost updated
10 years ago
-
This code
``` rust
trait ListItem {
slice: &'a [T]
}
impl> Collection for List {
test.rs:10 fn len(&self) -> uint {
test.rs:11 0
test.rs:12 }
test.rs:13 }
```
RUSTC_BACKTRACE=1 …
-
https://github.com/rust-lang/rust/pull/22899 should mean that contents of `core::fmt::rt::v1` used by `format_args!` can probably be made `#[unstable]`.
cc @eddyb
huonw updated
9 years ago
-
I'm following the guide and the compiler is telling me that I found a bug in the compiler. (That's so frickin' cool btw.)
I'm on 'rustc (e434aa1cf 2014-10-04 17:47:06 +0000)', right now, I'm recompi…
azdle updated
10 years ago