1 2 3 4 5 6 7
#![crate_type="lib"] extern crate foo; use foo::Foo; pub fn crash() -> Box<Foo> { Box::new(Foo::new()) }