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
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| {letmut out = std::rt::io::native::stdio::stdout();
std::fmt::write(&mut out as&mut std::rt::io::Writer, args);},".");}