2024-03-20 19:03:59 -05:00
|
|
|
//@ run-rustfix
|
2021-08-27 11:04:57 -05:00
|
|
|
#![feature(generic_const_exprs)]
|
2024-03-20 19:03:59 -05:00
|
|
|
#![allow(incomplete_features, dead_code)]
|
2021-06-08 02:02:12 -05:00
|
|
|
|
2021-06-09 13:28:41 -05:00
|
|
|
struct Evaluatable<const N: u128> {}
|
2021-06-08 02:02:12 -05:00
|
|
|
|
|
|
|
struct Foo<const N: u8>([u8; N as usize])
|
2024-03-20 19:03:59 -05:00
|
|
|
//~^ ERROR unconstrained generic constant
|
2021-06-08 02:02:12 -05:00
|
|
|
where
|
2021-06-09 13:28:41 -05:00
|
|
|
Evaluatable<{N as u128}>:;
|
2024-03-20 19:03:59 -05:00
|
|
|
//~^ HELP try adding a `where` bound
|
2021-06-09 13:28:41 -05:00
|
|
|
|
|
|
|
struct Foo2<const N: u8>(Evaluatable::<{N as u128}>) where Evaluatable<{N as usize as u128 }>:;
|
2024-03-20 19:03:59 -05:00
|
|
|
//~^ ERROR unconstrained generic constant
|
|
|
|
//~| HELP try adding a `where` bound
|
2021-06-09 13:28:41 -05:00
|
|
|
|
|
|
|
struct Bar<const N: u8>([u8; (N + 2) as usize]) where [(); (N + 1) as usize]:;
|
2024-03-20 19:03:59 -05:00
|
|
|
//~^ ERROR unconstrained generic constant
|
|
|
|
//~| HELP try adding a `where` bound
|
2021-06-08 02:02:12 -05:00
|
|
|
|
|
|
|
fn main() {}
|