Files
rust/tests/ui/intrinsics/const-eval-select-bad.rs

44 lines
983 B
Rust
Raw Normal View History

2021-10-12 05:06:37 +00:00
#![feature(const_eval_select)]
#![feature(core_intrinsics)]
2021-10-12 05:06:37 +00:00
use std::intrinsics::const_eval_select;
const fn not_fn_items() {
2021-10-14 06:18:53 +00:00
const_eval_select((), || {}, || {});
2025-07-08 15:41:13 +00:00
//~^ ERROR const FnOnce()` is not satisfied
2021-10-12 05:06:37 +00:00
const_eval_select((), 42, 0xDEADBEEF);
//~^ ERROR expected a `FnOnce()` closure
//~| ERROR expected a `FnOnce()` closure
2021-10-12 05:06:37 +00:00
}
2021-10-14 06:18:53 +00:00
const fn foo(n: i32) -> i32 {
2021-10-12 05:06:37 +00:00
n
}
2021-10-14 06:18:53 +00:00
fn bar(n: i32) -> bool {
2021-10-12 05:06:37 +00:00
assert_eq!(n, 0, "{} must be equal to {}", n, 0);
n == 0
}
2021-10-14 06:18:53 +00:00
fn baz(n: bool) -> i32 {
2021-10-12 05:06:37 +00:00
assert!(n, "{} must be true", n);
n as i32
}
const fn return_ty_mismatch() {
const_eval_select((1,), foo, bar);
//~^ ERROR expected `bar` to return `i32`, but it returns `bool`
2021-10-12 05:06:37 +00:00
}
const fn args_ty_mismatch() {
const_eval_select((true,), foo, baz);
//~^ ERROR type mismatch
}
const fn non_const_fn() {
const_eval_select((1,), bar, bar);
2025-07-08 15:41:13 +00:00
//~^ ERROR the trait bound `fn(i32) -> bool {bar}: const FnOnce(i32)` is not satisfied
}
2021-10-12 05:06:37 +00:00
fn main() {}