2021-04-22 11:31:13 +02:00
|
|
|
// This file provides a const function that is unstably const forever.
|
|
|
|
|
|
|
|
#![feature(staged_api)]
|
2023-10-15 12:53:37 -07:00
|
|
|
#![stable(feature = "clippytest", since = "1.0.0")]
|
2021-04-22 11:31:13 +02:00
|
|
|
|
2023-10-15 12:53:37 -07:00
|
|
|
#[stable(feature = "clippytest", since = "1.0.0")]
|
2021-04-22 11:31:13 +02:00
|
|
|
#[rustc_const_unstable(feature = "foo", issue = "none")]
|
|
|
|
pub const fn unstably_const_fn() {}
|