You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was playing around with Rust recently trying to develop a module that needed to maintain some internal state, and came across what appears to be a lack of support for static variables for anything besides primitive types.
Here's my example program (list definition taken from the tutorial):
And here's the error that trying to compile this code generates with RUST_LOG=rustc=1, minus some dead code warnings:
task 'rustc' failed at 'assertion failed: !is_undef(wrapped)', /opt/rust/src/librustc/middle/trans/adt.rs:773
error: internal compiler error: unexpected failure
This message reflects a bug in the Rust compiler.
We would appreciate a bug report: https://github.com/mozilla/rust/wiki/HOWTO-submit-a-Rust-bug-report
note: the compiler hit an unexpected failure path. this is a bug
note: try running with RUST_LOG=rustc=1 to get further details and report the results to github.com/mozilla/rust/issues
task '<main>' failed at 'explicit failure', /opt/rust/src/librustc/lib.rs:453
This is with Rust 0.9 on openSUSE 13.1.
The text was updated successfully, but these errors were encountered:
I was playing around with Rust recently trying to develop a module that needed to maintain some internal state, and came across what appears to be a lack of support for static variables for anything besides primitive types.
Here's my example program (list definition taken from the tutorial):
And here's the error that trying to compile this code generates with
RUST_LOG=rustc=1
, minus some dead code warnings:This is with Rust 0.9 on openSUSE 13.1.
The text was updated successfully, but these errors were encountered: