rust/tests/ui/consts/const-eval/auxiliary/stability.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
294 B
Rust
Raw Normal View History

// 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")]
2018-08-25 08:54:09 -05:00
pub const fn foo() -> u32 { 42 }