]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/issue-28766/main.rs
Rollup merge of #107731 - RalfJung:interpret-discriminant, r=cjgillot
[rust.git] / tests / run-make-fulldeps / issue-28766 / main.rs
1 #![crate_type="lib"]
2 extern crate foo;
3 use foo::Foo;
4
5 pub fn crash() -> Box<Foo> {
6   Box::new(Foo::new())
7 }