1
Fork 0

Auto merge of #60277 - estebank:relate-ice, r=varkor

Don't ICE when relating const type args

Fix #60263.

r? @varkor
This commit is contained in:
bors 2019-05-07 16:45:14 +00:00
commit 17dba3b6e4
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`.