Closed
Description
#![feature(const_generics)]
struct Stack<const N: usize> {
stack: [u64; N / 8],
}
fn main() {}
results in:
error: internal compiler error: constant in type had an ignored error
--> src/main.rs:4:5
|
4 | stack: [u64; N / 8],
| ^^^^^^^^^^^^^^^^^^^
thread 'rustc' panicked at 'no errors encountered even though `delay_span_bug` issued', src/librustc_errors/lib.rs:356:17
Metadata
Metadata
Assignees
Labels
Area: const generics (parameters and arguments)Area: Lazy normalization (tracking issue: #60471)Category: This is a bug.`#![feature(const_generics)]`Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️Relevant to the compiler team, which will review and decide on the PR/issue.ICE tracked in rust-lang/glacier.This issue requires a nightly compiler in some way.