about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-adt_const_params.rs
blob: 7efa529c55791f597556ec5f29776f8d9e6f25e7 (plain)
1
2
3
4
5
6
struct Bar(u8);

struct Foo<const N: Bar>;
//~^ ERROR: `Bar` is forbidden as the type of a const generic parameter

fn main() {}