blob: e54cbb0980432c7a41f3b7de6af3bbe9701efb06 [file] [log] [blame]
// Crate that exports a const fn. Used for testing cross-crate.
#![feature(staged_api, rustc_attrs)]
#![stable(since="1.0.0", feature = "mep")]
#![crate_type="rlib"]
#[rustc_promotable]
#[stable(since="1.0.0", feature = "mep")]
#[inline]
pub const fn foo() -> usize { 22 }
#[stable(since="1.0.0", feature = "mep")]
pub struct Foo(usize);
impl Foo {
#[stable(since="1.0.0", feature = "mep")]
#[inline]
#[rustc_promotable]
pub const fn foo() -> usize { 22 }
}