Closed
Description
The following code (as of commit 0012b50) gives an internal compiler error drop_ty_immediate: non-box ty
.
use std::rt::rtio::RtioTimer;
use std::rt::io::Timer;
fn main() {
let maybe_timer = Timer::new();
maybe_timer.expect("Expected a timer").sleep(1);
}