about summary refs log tree commit diff
path: root/tests/ui/const-generics/defaults/complex-generic-default-expr.rs
blob: 50fb4eb6e6c931dd3e802adb07607efa3631e923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ revisions: full min
//@[full] check-pass
#![cfg_attr(full, feature(generic_const_exprs))]
#![cfg_attr(full, allow(incomplete_features))]

struct Foo<const N: usize, const M: usize = { N + 1 }>;
//[min]~^ ERROR generic parameters may not be used in const operations

struct Bar<T, const TYPE_SIZE: usize = { std::mem::size_of::<T>() }>(T);
//[min]~^ ERROR generic parameters may not be used in const operations

fn main() {}