mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 08:00:02 +00:00
11 lines
294 B
Rust
11 lines
294 B
Rust
// 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 }
|