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:
commit
17dba3b6e4
2 changed files with 21 additions and 0 deletions
9
src/test/ui/const-generics/issue-60263.rs
Normal file
9
src/test/ui/const-generics/issue-60263.rs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
struct B<const I: u8>; //~ ERROR const generics are unstable
|
||||||
|
|
||||||
|
impl B<0> {
|
||||||
|
fn bug() -> Self {
|
||||||
|
panic!()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {}
|
12
src/test/ui/const-generics/issue-60263.stderr
Normal file
12
src/test/ui/const-generics/issue-60263.stderr
Normal 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`.
|
Loading…
Add table
Add a link
Reference in a new issue