blob: af2d209826e19a2ff375feddbc4f02f7d68fdeba [file] [log] [blame]
// Crate that exports an existential type. Used for testing cross-crate.
#![crate_type="rlib"]
#![feature(existential_type)]
pub existential type Foo: std::fmt::Debug;
pub fn foo() -> Foo {
5
}