rust/src/test/run-pass/issue-1466.rs
Patrick Walton 6cb38aeb43 test: XFAIL issue-1466.rs due to cycle collector crashes.
I don't want to do this, but the tree has been in a state of chaos for days
and it's not clear what can be backed out to fix this test.
2012-07-18 20:39:56 -07:00

8 lines
137 B
Rust

// exec-env:RUST_CC_ZEAL=1
// xfail-test
fn main() {
#error["%?", os::getenv(~"RUST_CC_ZEAL")];
let _x = @{a: @10, b: ~true};
}