summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/issues/issue-75047.rs
blob: 7b6fb92bca96e04411ee2d41256bf33d9a92b8fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// [full] check-pass
// revisions: full min
#![cfg_attr(full, feature(adt_const_params))]
#![cfg_attr(full, allow(incomplete_features))]

struct Bar<T>(T);

impl<T> Bar<T> {
    const fn value() -> usize {
        42
    }
}

struct Foo<const N: [u8; Bar::<u32>::value()]>;
//[min]~^ ERROR `[u8; Bar::<u32>::value()]` is forbidden as the type of a const generic parameter

fn main() {}