blob: aeef296f38526eeff33552629e820df374fcfa1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0658]: const generics are unstable
--> $DIR/issue-60263.rs:1:16
|
LL | struct B<const I: u8>;
| ^
|
= note: see issue #74878 <https://github.com/rust-lang/rust/issues/74878> for more information
= help: add `#![feature(min_const_generics)]` to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0658`.
|