blob: 48ced3bc51e621d683233f53edfd41022fe5cbf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Crate that exports a const fn. Used for testing cross-crate.
#![crate_type = "rlib"]
#![stable(feature = "rust1", since = "1.0.0")]
#![feature(staged_api)]
#[stable(feature = "rust1", since = "1.0.0")]
#[rustc_const_unstable(feature = "foo", issue = "none")]
pub const fn foo() -> u32 {
42
}
|