2018-08-25 15:31:24 +02:00
|
|
|
// Crate that exports a const fn. Used for testing cross-crate.
|
|
|
|
|
|
2025-07-11 10:20:25 +00:00
|
|
|
#![crate_type = "rlib"]
|
2018-08-25 15:31:24 +02:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
|
#![feature(staged_api)]
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2025-07-11 10:20:25 +00:00
|
|
|
#[rustc_const_unstable(feature = "foo", issue = "none")]
|
|
|
|
|
pub const fn foo() -> u32 {
|
|
|
|
|
42
|
|
|
|
|
}
|