-
-
Save thehydroimpulse/f68257e7fd8cdf353e88 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rustc --debuginfo=2 des.rs | |
error: internal compiler error: Type metadata for unique id '{&{&[]{struct 7edd98819e2e66bc/2157e}}}' is already in the TypeMap! | |
note: the compiler hit an unexpected failure path. this is a bug. | |
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html | |
note: run with `RUST_BACKTRACE=1` for a backtrace | |
task 'rustc' failed at 'Box<Any>', /Users/rustbuild/src/rust-buildbot/slave/nightly-mac/build/src/libsyntax/diagnostic.rs:162 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub struct Foo { | |
i: int | |
} | |
fn main() { | |
let a = Foo { i: 5 }; | |
println!("{}", a.i); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rustc 0.11.0-pre-nightly (6d8342f 2014-06-14 17:51:49 +0000) | |
host: x86_64-apple-darwin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment