Closed
Description
On OS X 10.8.4, x86_64-apple-darwin, rust 0.9-pre (freshly pulled).
This little snippet causes a bus error 10 for me:
do 300.times {
debug!(".");
}
I've narrowed it down to std::fmt::write_unsafe(), but from there things start getting private and hard to probe.
An example closer to the source would be:
do 300.times {
format_args!(|args| {
let mut out = std::rt::io::native::stdio::stdout();
std::fmt::write(&mut out as &mut std::rt::io::Writer, args);
}, ".");
}
Metadata
Metadata
Assignees
Labels
No labels