mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
7 lines
129 B
Rust
7 lines
129 B
Rust
struct Bar(u8);
|
|
|
|
struct Foo<const N: Bar>;
|
|
//~^ ERROR: `Bar` is forbidden as the type of a const generic parameter
|
|
|
|
fn main() {}
|