2023-07-10 03:10:03 +02:00
|
|
|
#![feature(generic_const_items, trivial_bounds)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
// Ensure that we check if trivial bounds on const items hold or not.
|
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
const UNUSABLE: () = () //~ ERROR evaluation of constant value failed
|
2023-07-10 03:10:03 +02:00
|
|
|
where
|
|
|
|
String: Copy;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = UNUSABLE; //~ ERROR the trait bound `String: Copy` is not satisfied
|
|
|
|
}
|