blob: 96ab476061d2afb0c6137a7a23a00ab277ad2f9d [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
}