Files
rust/tests/ui/feature-gates/feature-gate-adt_const_params.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
129 B
Rust
Raw Normal View History

2025-09-15 14:15:29 +00:00
struct Bar(u8);
struct Foo<const N: Bar>;
//~^ ERROR: `Bar` is forbidden as the type of a const generic parameter
fn main() {}