rust/src/test/ui/const-generics/params-in-ct-in-ty-param-lazy-norm.rs

13 lines
432 B
Rust
Raw Normal View History

// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
struct Foo<T, U = [u8; std::mem::size_of::<T>()]>(T, U);
//[min]~^ ERROR generic parameters may not be used in const operations
struct Bar<T = [u8; N], const N: usize>(T);
2021-04-18 06:57:22 -05:00
//~^ ERROR generic parameters with a default cannot use forward declared identifiers
2021-03-01 05:50:09 -06:00
//~| ERROR generic parameters with a default
fn main() {}