rust/tests/ui/intrinsics/const-eval-select-stability.rs

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

22 lines
484 B
Rust
Raw Normal View History

2021-10-14 01:53:20 -05:00
#![feature(staged_api)]
#![feature(const_eval_select)]
#![feature(core_intrinsics)]
2021-10-14 01:53:20 -05:00
#![stable(since = "1.0", feature = "ui_test")]
use std::intrinsics::const_eval_select;
fn log() {
println!("HEY HEY HEY")
}
const fn nothing(){}
#[stable(since = "1.0", feature = "hey")]
#[rustc_const_stable(since = "1.0", feature = "const_hey")]
pub const fn hey() {
2021-10-14 01:53:20 -05:00
const_eval_select((), nothing, log);
//~^ ERROR `const_eval_select` is not yet stable as a const fn
}
fn main() {}