mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
341 B
Rust
13 lines
341 B
Rust
#![feature(generic_const_items, trivial_bounds)]
|
|
#![allow(incomplete_features)]
|
|
|
|
// Ensure that we check if trivial bounds on const items hold or not.
|
|
|
|
const UNUSABLE: () = () //~ ERROR evaluation of constant value failed
|
|
where
|
|
String: Copy;
|
|
|
|
fn main() {
|
|
let _ = UNUSABLE; //~ ERROR the trait bound `String: Copy` is not satisfied
|
|
}
|