0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-24 18:21:15 +01:00
rust/tests/crashes/125801.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
289 B
Rust
Raw Permalink Normal View History

2024-06-08 18:36:21 +02:00
//@ known-bug: rust-lang/rust#125801
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
trait Foo {
type Output;
}
impl Foo for [u8; 3] {
type Output = [u8; 3];
}
static A: <[u8; N] as Foo>::Output = [1, 2, 3];
fn main() {
|| {
let _ = A[1];
};
}