Don't ICE when relating const type args

This commit is contained in:
Esteban Küber 2019-04-25 11:36:16 -07:00
parent 08bfe16129
commit 750808680a
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,9 @@
struct B<const I: u8>; //~ ERROR const generics are unstable
impl B<0> {
fn bug() -> Self {
panic!()
}
}
fn main() {}

View file

@ -0,0 +1,12 @@
error[E0658]: const generics are unstable
--> $DIR/issue-60263.rs:1:16
|
LL | struct B<const I: u8>;
| ^
|
= note: for more information, see https://github.com/rust-lang/rust/issues/44580
= help: add #![feature(const_generics)] to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0658`.