2020-06-25 17:43:48 -07:00
|
|
|
// Don't allow unstable features in stable functions without `allow_internal_unstable`.
|
|
|
|
|
2020-05-21 12:49:38 -07:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2020-01-10 18:48:52 -08:00
|
|
|
#![feature(staged_api)]
|
2021-06-03 03:31:27 -04:00
|
|
|
#![feature(const_fn_floating_point_arithmetic)]
|
2020-01-10 18:48:52 -08:00
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
|
2021-06-03 03:31:27 -04:00
|
|
|
pub const fn foo() -> f32 {
|
|
|
|
1.0 + 1.0 //~ ERROR const-stable function cannot use `#[feature(const_fn_floating_point_arithmetic)]`
|
2020-01-10 18:48:52 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|